diff options
Diffstat (limited to 'module/plugins/hoster/FilefactoryCom.py')
-rw-r--r-- | module/plugins/hoster/FilefactoryCom.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/module/plugins/hoster/FilefactoryCom.py b/module/plugins/hoster/FilefactoryCom.py index e608d6db0..75d98d5cc 100644 --- a/module/plugins/hoster/FilefactoryCom.py +++ b/module/plugins/hoster/FilefactoryCom.py @@ -21,7 +21,7 @@ def get_info(urls): class FilefactoryCom(SimpleHoster): __name__ = "FilefactoryCom" __type__ = "hoster" - __version__ = "0.59" + __version__ = "0.60" __status__ = "testing" __pattern__ = r'https?://(?:www\.)?filefactory\.com/(file|trafficshare/\w+)/\w+' @@ -63,8 +63,10 @@ class FilefactoryCom(SimpleHoster): def check_download(self): - check = self.check_file({'multiple': "You are currently downloading too many files at once.", - 'error' : '<div id="errorMessage">'}) + check = self.check_file({ + 'multiple': "You are currently downloading too many files at once.", + 'error' : '<div id="errorMessage">' + }) if check == "multiple": self.log_debug("Parallel downloads detected; waiting 15 minutes") |