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>""" |