--- a/Helpviewer/Network/FollowRedirectReply.py Sun Jul 22 15:32:52 2012 +0200 +++ b/Helpviewer/Network/FollowRedirectReply.py Mon Jul 23 19:21:44 2012 +0200 @@ -66,6 +66,14 @@ """ return self.__reply.error() + def errorString(self): + """ + Public method to get the error message. + + @return error message (string) + """ + return self.__reply.errorString() + def readAll(self): """ Public method to read all received data. @@ -74,6 +82,12 @@ """ return self.__reply.readAll() + def close(self): + """ + Public method to close the data stream. + """ + self.__reply.close() + def __replyFinished(self): """ Private slot handling the receipt of the requested data.