diff options
author | 2014-01-18 19:44:49 +0100 | |
---|---|---|
committer | 2014-01-18 19:44:49 +0100 | |
commit | 64bd06600d98bf1cb52b48fbac626c15407183d3 (patch) | |
tree | 649ecf95b6ff85400fc7445f3f6e2e9957db9616 /pyload/datatypes | |
parent | rewritten download scheduling, improved account manager, db version increased... (diff) | |
download | pyload-64bd06600d98bf1cb52b48fbac626c15407183d3.tar.xz |
some fixes for new dl manager
Diffstat (limited to 'pyload/datatypes')
-rw-r--r-- | pyload/datatypes/PyFile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/datatypes/PyFile.py b/pyload/datatypes/PyFile.py index b83a057aa..720b97cda 100644 --- a/pyload/datatypes/PyFile.py +++ b/pyload/datatypes/PyFile.py @@ -206,7 +206,7 @@ class PyFile(object): def abortDownload(self): """abort pyfile if possible""" # TODO: abort timeout, currently dead locks - while self.id in self.m.core.dlm.processingIds(): + while self.fid in self.m.core.dlm.processingIds(): self.abort = True if self.plugin and self.plugin.req: self.plugin.req.abort() |