--- a/Helpviewer/Network/NetworkProtocolUnknownErrorReply.py Sun Jun 19 17:50:39 2011 +0200 +++ b/Helpviewer/Network/NetworkProtocolUnknownErrorReply.py Sun Jun 19 19:36:27 2011 +0200 @@ -22,7 +22,7 @@ @param protocol protocol name (string) @param parent reference to the parent object (QObject) """ - QNetworkReply.__init__(self, parent) + super().__init__(parent) self.setError(QNetworkReply.ProtocolUnknownError, self.trUtf8("Protocol '{0}' not supported.").format(protocol)) QTimer.singleShot(0, self.__fireSignals)