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/FilefactoryCom.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/FilefactoryCom.py')
-rw-r--r-- | module/plugins/hoster/FilefactoryCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/FilefactoryCom.py b/module/plugins/hoster/FilefactoryCom.py index 349875f75..ada498a51 100644 --- a/module/plugins/hoster/FilefactoryCom.py +++ b/module/plugins/hoster/FilefactoryCom.py @@ -56,7 +56,7 @@ class FilefactoryCom(SimpleHoster): m = re.search(self.WAIT_PATTERN, self.html) if m: - self.wait(m.group(1)) + self.wait(int(m.group(1))) self.download(dl_link, disposition=True) |