UI/UserInterface.py

branch
5_1_x
changeset 1113
95d837803666
parent 924
25ac72d20003
child 1194
9a54fec8559d
equal deleted inserted replaced
1111:8f7ebfc5b087 1113:95d837803666
5615 5615
5616 @param reply reference to the reply object (QNetworkReply) 5616 @param reply reference to the reply object (QNetworkReply)
5617 @param errors list of SSL errors (list of QSslError) 5617 @param errors list of SSL errors (list of QSslError)
5618 """ 5618 """
5619 errorStrings = [] 5619 errorStrings = []
5620 for err in sslErrors: 5620 for err in errors:
5621 errorStrings.append(err.errorString()) 5621 errorStrings.append(err.errorString())
5622 errorString = '.<br />'.join(errorStrings) 5622 errorString = '.<br />'.join(errorStrings)
5623 ret = E5MessageBox.yesNo(self, 5623 ret = E5MessageBox.yesNo(self,
5624 self.trUtf8("SSL Errors"), 5624 self.trUtf8("SSL Errors"),
5625 self.trUtf8("""<p>SSL Errors:</p>""" 5625 self.trUtf8("""<p>SSL Errors:</p>"""

eric ide

mercurial