--- a/E5Network/E5SslErrorHandler.py Sun Mar 24 13:52:12 2013 +0100 +++ b/E5Network/E5SslErrorHandler.py Mon Mar 25 03:11:06 2013 +0100 @@ -7,6 +7,8 @@ Module implementing a SSL error handler. """ +from __future__ import unicode_literals # __IGNORE_WARNING__ + from PyQt4.QtCore import qVersion, QObject, QByteArray from PyQt4.QtNetwork import QSslCertificate, QSslConfiguration, QSslSocket, \ QSslError, QSsl @@ -34,7 +36,7 @@ @param parent reference to the parent object (QObject) """ - super().__init__(parent) + super(E5SslErrorHandler, self).__init__(parent) caList = self.__getSystemCaCertificates() if Preferences.Prefs.settings.contains("Help/CaCertificatesDict"):