diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-10-05 22:55:22 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-10-05 22:55:22 +0200 |
commit | 3e0bc9a0fb4dd6324e9764bc31f4686d672b70f4 (patch) | |
tree | 42265eeda90cbea3693ca28bc545afc630a2693b /module/network | |
parent | changed dl function for test purpose (diff) | |
download | pyload-3e0bc9a0fb4dd6324e9764bc31f4686d672b70f4.tar.xz |
general js api + pyv8 support
Diffstat (limited to 'module/network')
-rwxr-xr-x | module/network/Request.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/module/network/Request.py b/module/network/Request.py index 21159dde1..7c1e468eb 100755 --- a/module/network/Request.py +++ b/module/network/Request.py @@ -17,7 +17,6 @@ @author: spoob @author: RaNaN @author: mkaay - @version: v0.3.2 """ import base64 @@ -361,7 +360,7 @@ class Request: def progress(self, dl_t, dl_d, up_t, up_d): if self.abort: - return False + raise Exception self.dl_arrived = int(dl_d) self.dl_size = int(dl_t) |