503 self.trUtf8("SSL Errors"), |
503 self.trUtf8("SSL Errors"), |
504 self.trUtf8("""<p>SSL Errors:</p>""" |
504 self.trUtf8("""<p>SSL Errors:</p>""" |
505 """<p>{0}</p>""" |
505 """<p>{0}</p>""" |
506 """<p>Do you want to ignore these errors?</p>""")\ |
506 """<p>Do you want to ignore these errors?</p>""")\ |
507 .format(errorString), |
507 .format(errorString), |
508 type_ = E5MessageBox.Warning) |
508 icon = E5MessageBox.Warning) |
509 if ret: |
509 if ret: |
510 reply.ignoreSslErrors() |
510 reply.ignoreSslErrors() |
511 else: |
511 else: |
512 self.__downloadCancelled = True |
512 self.__downloadCancelled = True |
513 reply.abort() |
513 reply.abort() |