WebBrowser/Network/SslErrorExceptionsDialog.py

changeset 5526
11337e4fba52
parent 5389
9b1c800daff3
child 5530
93f95c4b3153
equal deleted inserted replaced
5525:1771a7f9065c 5526:11337e4fba52
75 self.tr("The certificate has a validity period that is" 75 self.tr("The certificate has a validity period that is"
76 " too long.") 76 " too long.")
77 except AttributeError: 77 except AttributeError:
78 # the value was added in Qt 5.7 78 # the value was added in Qt 5.7
79 pass 79 pass
80 # TODO: Qt 5.8 - add support for QWebEngineCertificateError.CertificateTransparencyRequired
80 81
81 for host, errors in errorsDict.items(): 82 for host, errors in errorsDict.items():
82 itm = QTreeWidgetItem(self.errorsTree, [host]) 83 itm = QTreeWidgetItem(self.errorsTree, [host])
83 self.errorsTree.setFirstItemColumnSpanned(itm, True) 84 self.errorsTree.setFirstItemColumnSpanned(itm, True)
84 for error in errors: 85 for error in errors:

eric ide

mercurial