--- a/eric6/WebBrowser/Network/SslErrorExceptionsDialog.py Wed Sep 25 18:37:35 2019 +0200 +++ b/eric6/WebBrowser/Network/SslErrorExceptionsDialog.py Wed Sep 25 18:48:22 2019 +0200 @@ -70,18 +70,21 @@ } try: self.__errorDescriptions[ - QWebEngineCertificateError.CertificateValidityTooLong] = \ - self.tr("The certificate has a validity period that is" - " too long.") + QWebEngineCertificateError.CertificateValidityTooLong + ] = self.tr( + "The certificate has a validity period that is too long." + ) except AttributeError: # the value was added in Qt 5.7 pass try: self.__errorDescriptions[ - QWebEngineCertificateError.CertificateTransparencyRequired] = \ - self.tr("Certificate Transparency was required for this" - " connection, but the server did not provide" - " information that complied with the policy.") + QWebEngineCertificateError.CertificateTransparencyRequired + ] = self.tr( + "Certificate Transparency was required for this" + " connection, but the server did not provide" + " information that complied with the policy." + ) except AttributeError: # the value was added in Qt 5.8 pass