Add isFinished method to schemehandler

This commit is contained in:
Florian Bruhin 2014-02-21 19:24:58 +01:00
parent 61060f0796
commit d975ec080d

View File

@ -111,3 +111,7 @@ class SpecialNetworkReply(QNetworkReply):
logging.debug("readdata, len {}, maxlen {}, buf {}".format(len(self._data), maxlen, buf))
self._data = self._data[len_:]
return buf
def isFinished(self):
"""Check if the reply is finished."""
return True