diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-06-17 20:25:48 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-06-17 20:25:48 +0200 |
commit | d739c5809256dcacb2f7e739a06e8f4107f7e20c (patch) | |
tree | acf7df065d67ba34e63138f61bfcb760cf901920 /module/network/HTTPDownload.py | |
parent | skip files across packages (diff) | |
download | pyload-d739c5809256dcacb2f7e739a06e8f4107f7e20c.tar.xz |
fixed last commit
Diffstat (limited to 'module/network/HTTPDownload.py')
-rw-r--r-- | module/network/HTTPDownload.py | 2 |
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"): |