diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-03 14:38:22 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-03 14:38:22 +0100 |
commit | be05dce2da77bca4613efbdfb0f6357a983e6e1c (patch) | |
tree | 7862d4ea889c15511003d6b378c57d55b1fd6833 /module/plugins/hoster/UpstoreNet.py | |
parent | [ShareonlineBiz] Fix recaptcha (diff) | |
download | pyload-be05dce2da77bca4613efbdfb0f6357a983e6e1c.tar.xz |
Fix https://github.com/pyload/pyload/issues/943
Diffstat (limited to 'module/plugins/hoster/UpstoreNet.py')
-rw-r--r-- | module/plugins/hoster/UpstoreNet.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/UpstoreNet.py b/module/plugins/hoster/UpstoreNet.py index 8c93c4d61..239cc92f5 100644 --- a/module/plugins/hoster/UpstoreNet.py +++ b/module/plugins/hoster/UpstoreNet.py @@ -46,7 +46,7 @@ class UpstoreNet(SimpleHoster): m = re.search(self.WAIT_PATTERN, self.html) if m is None: self.error(_("Wait pattern not found")) - wait_time = m.group(1) + wait_time = int(m.group(1)) # then, do the waiting self.wait(wait_time) |