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/FilefactoryCom.py | |
parent | [UploadedTo] Rewritten (diff) | |
download | pyload-e9eb993cb369aef09741917370f2518168465f8c.tar.xz |
Spare code cosmetics
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 2c8ec58f4..30c1b85ec 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(int(m.group(1))) + self.wait(m.group(1)) self.download(dl_link, disposition=True) |