diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-06-04 23:31:45 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-06-04 23:31:45 +0200 |
commit | a6e9a846137688bd7e5b1dea61e41831324ba3a7 (patch) | |
tree | c0942954b31a70edced99a036a09e8f0ec074dd2 /module/network/Request.py | |
parent | added buggy Zippyshare.com Download Plugin, fixed gettext bug (diff) | |
download | pyload-a6e9a846137688bd7e5b1dea61e41831324ba3a7.tar.xz |
request fix
Diffstat (limited to 'module/network/Request.py')
-rwxr-xr-x | module/network/Request.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/module/network/Request.py b/module/network/Request.py index 8725d0607..1bf8c8255 100755 --- a/module/network/Request.py +++ b/module/network/Request.py @@ -102,7 +102,10 @@ class Request: file = open(filename, 'wb') req = urllib2.Request(url) conn = self.downloader.open(req, post) - self.dl_size = int(conn.headers["content-length"]) + if conn.headers.has_key("content-length"): + self.dl_size = int(conn.headers["content-length"]) + else: + self.dl_size = 0 self.dl_arrived = 0 self.dl_time = time.time() for chunk in conn: |