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/UpleaCom.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/UpleaCom.py')
-rw-r--r-- | module/plugins/hoster/UpleaCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/UpleaCom.py b/module/plugins/hoster/UpleaCom.py index 7e4b3b0b1..c9b32c196 100644 --- a/module/plugins/hoster/UpleaCom.py +++ b/module/plugins/hoster/UpleaCom.py @@ -46,7 +46,7 @@ class UpleaCom(XFSHoster): m = re.search(self.WAIT_PATTERN, self.html) if m: - self.wait(m.group(1), True) + self.wait(int(m.group(1)), True) self.retry() m = re.search(self.LINK_PATTERN, self.html) |