downloads: Remove safety check in on_reply_error

Probably not needed after the last commit.
This commit is contained in:
Daniel 2015-10-24 11:33:04 +02:00
parent 252dc9a8bd
commit 9694b3b548

View File

@ -590,9 +590,6 @@ class DownloadItem(QObject):
if code == QNetworkReply.OperationCanceledError:
return
else:
if self.reply is None:
log.downloads.debug("QNetworkReply disappeared %s", self)
return
self._die(self.reply.errorString())
@pyqtSlot()