summaryrefslogtreecommitdiffstats
path: root/module/network/HTTPDownload.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-06-17 20:25:48 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-06-17 20:25:48 +0200
commitd739c5809256dcacb2f7e739a06e8f4107f7e20c (patch)
treeacf7df065d67ba34e63138f61bfcb760cf901920 /module/network/HTTPDownload.py
parentskip files across packages (diff)
downloadpyload-d739c5809256dcacb2f7e739a06e8f4107f7e20c.tar.xz
fixed last commit
Diffstat (limited to 'module/network/HTTPDownload.py')
-rw-r--r--module/network/HTTPDownload.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/network/HTTPDownload.py b/module/network/HTTPDownload.py
index 603fea7a8..0f06dcd6f 100644
--- a/module/network/HTTPDownload.py
+++ b/module/network/HTTPDownload.py
@@ -248,8 +248,8 @@ class HTTPDownload():
def close(self):
""" cleanup """
for chunk in self.chunks:
- chunk.close()
self.m.remove_handle(chunk.c)
+ chunk.close()
self.chunks = []
if hasattr(self, "m"):