diff options
author | 2015-01-28 01:34:38 +0100 | |
---|---|---|
committer | 2015-01-28 01:34:38 +0100 | |
commit | e9eb993cb369aef09741917370f2518168465f8c (patch) | |
tree | 392a455f437f4913ca60c22229ca0b4bec6f68ee /module/plugins/hoster/UnibytesCom.py | |
parent | [UploadedTo] Rewritten (diff) | |
download | pyload-e9eb993cb369aef09741917370f2518168465f8c.tar.xz |
Spare code cosmetics
Diffstat (limited to 'module/plugins/hoster/UnibytesCom.py')
-rw-r--r-- | module/plugins/hoster/UnibytesCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/UnibytesCom.py b/module/plugins/hoster/UnibytesCom.py index cd4e506c4..16b1f82ab 100644 --- a/module/plugins/hoster/UnibytesCom.py +++ b/module/plugins/hoster/UnibytesCom.py @@ -62,7 +62,7 @@ class UnibytesCom(SimpleHoster): if last_step == 'timer': m = re.search(self.WAIT_PATTERN, self.html) - self.wait(int(m.group(1)) if m else 60, False) + self.wait(m.group(1) if m else 60, False) elif last_step in ("captcha", "last"): post_data['captcha'] = self.decryptCaptcha(urljoin(domain, "/captcha.jpg")) |