summaryrefslogtreecommitdiffstats
path: root/module/network/HTTPDownload.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-12-25 20:20:33 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-12-25 20:20:33 +0100
commit805cb9d007e61edf2a211467b65b868bf35b49f1 (patch)
tree01d4df81dc689b5ed676dfee1024d263ec9507d7 /module/network/HTTPDownload.py
parentcleanup stuff (diff)
downloadpyload-805cb9d007e61edf2a211467b65b868bf35b49f1.tar.xz
great fixes http://geekandpoke.typepad.com/.a/6a00d8341d3df553ef0134872dea10970c-pi
Diffstat (limited to 'module/network/HTTPDownload.py')
-rw-r--r--module/network/HTTPDownload.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/module/network/HTTPDownload.py b/module/network/HTTPDownload.py
index 117ecd0c6..bce698e1e 100644
--- a/module/network/HTTPDownload.py
+++ b/module/network/HTTPDownload.py
@@ -173,7 +173,7 @@ class HTTPDownload():
def _chunkDone(self):
self.chunksDone += 1
- print self.chunksDone, "/", len(self.chunks)
+ #print self.chunksDone, "/", len(self.chunks)
if self.chunksDone == len(self.chunks):
self._copyChunks()
@@ -306,7 +306,8 @@ class HTTPDownload():
def clean(self):
""" cleanup """
- pass
+ for c in self.chunks:
+ c.clean()
if __name__ == "__main__":
import sys