Tue, 17 Jan 2012 20:21:27 +0100
Fixed an issue with the latest browser changes.
Helpviewer/HelpBrowserWV.py | file | annotate | diff | comparison | revisions |
--- a/Helpviewer/HelpBrowserWV.py Sun Jan 15 16:44:41 2012 +0100 +++ b/Helpviewer/HelpBrowserWV.py Tue Jan 17 20:21:27 2012 +0100 @@ -355,6 +355,9 @@ @return reference to the SSL info (QSslCertificate) """ + if self.__sslConfiguration is None: + return None + sslInfo = self.__sslConfiguration.peerCertificate() sslInfo.url = QUrl(self.__sslConfiguration.url) return sslInfo