diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-06-13 20:59:49 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-06-13 20:59:49 +0200 |
commit | 42e93071a2825d2e2d8f7dba17a79a33bd9e4418 (patch) | |
tree | 82d3a0f24deec2b8e8986107f6a29e4a97c95faa /module/plugins | |
parent | erniebs patches (diff) | |
download | pyload-42e93071a2825d2e2d8f7dba17a79a33bd9e4418.tar.xz |
forget sleep
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/Plugin.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/module/plugins/Plugin.py b/module/plugins/Plugin.py index 73ce808a6..0b47187e3 100644 --- a/module/plugins/Plugin.py +++ b/module/plugins/Plugin.py @@ -251,6 +251,7 @@ class Plugin(object): t = time() + wait_time while t > time() : if self.pyfile.abort: raise Abort + sleep(0.25) self.retries += 1 raise Retry(reason) |