diff options
author | zoidberg10 <zoidberg@mujmail.cz> | 2012-03-04 08:31:48 +0100 |
---|---|---|
committer | zoidberg10 <zoidberg@mujmail.cz> | 2012-03-04 08:31:48 +0100 |
commit | f8fa74caeac0f824e2880a0c2a75340f048a6c2d (patch) | |
tree | a83cebcb75bf46ea618676f610ec388a917a5bcf /module/plugins/hoster/FilefactoryCom.py | |
parent | closed #548 (diff) | |
download | pyload-f8fa74caeac0f824e2880a0c2a75340f048a6c2d.tar.xz |
Diffstat (limited to 'module/plugins/hoster/FilefactoryCom.py')
-rw-r--r-- | module/plugins/hoster/FilefactoryCom.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/plugins/hoster/FilefactoryCom.py b/module/plugins/hoster/FilefactoryCom.py index 33e055175..4f6666675 100644 --- a/module/plugins/hoster/FilefactoryCom.py +++ b/module/plugins/hoster/FilefactoryCom.py @@ -34,7 +34,7 @@ class FilefactoryCom(Hoster): __name__ = "FilefactoryCom" __type__ = "hoster" __pattern__ = r"http://(?:www\.)?filefactory\.com/file/(?P<id>[a-zA-Z0-9]+).*" # URLs given out are often longer but this is the requirement - __version__ = "0.32" + __version__ = "0.33" __description__ = """Filefactory.Com File Download Hoster""" __author_name__ = ("paulking", "zoidberg") @@ -88,6 +88,8 @@ class FilefactoryCom(Hoster): def handleFree(self): if "Currently only Premium Members can download files larger than" in self.html: self.fail("File too large for free download") + elif "All free download slots on this server are currently in use" in self.html: + self.retry(50, 900, "All free slots are busy") # Check Id self.check = re.search(self.FILE_CHECK_PATTERN, self.html).group('check') |