diff options
author | zoidberg10 <zoidberg@mujmail.cz> | 2012-04-30 00:12:49 +0200 |
---|---|---|
committer | zoidberg10 <zoidberg@mujmail.cz> | 2012-04-30 00:12:49 +0200 |
commit | 4b0d5f395a84e703c7d1945e3fe76e0cac7a3979 (patch) | |
tree | 693ae92919da3a2f7779188360bf66e3e11ddc1c /module/plugins/hoster/RapidgatorNet.py | |
parent | plugin updates: closed #592, #565; closed #591 (diff) | |
download | pyload-4b0d5f395a84e703c7d1945e3fe76e0cac7a3979.tar.xz |
update stahnu.to, turbobit.net - closed #594
Diffstat (limited to 'module/plugins/hoster/RapidgatorNet.py')
-rw-r--r-- | module/plugins/hoster/RapidgatorNet.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/RapidgatorNet.py b/module/plugins/hoster/RapidgatorNet.py index e4424809c..8a6ab6150 100644 --- a/module/plugins/hoster/RapidgatorNet.py +++ b/module/plugins/hoster/RapidgatorNet.py @@ -27,7 +27,7 @@ class RapidgatorNet(SimpleHoster): __name__ = "RapidgatorNet" __type__ = "hoster" __pattern__ = r"http://(?:www\.)?(rapidgator.net)/file/(\d+)" - __version__ = "0.02" + __version__ = "0.03" __description__ = """rapidgator.net""" __author_name__ = ("zoidberg") @@ -39,7 +39,7 @@ class RapidgatorNet(SimpleHoster): RECAPTCHA_KEY_PATTERN = r'"http://api.recaptcha.net/challenge?k=(.*?)"' def handleFree(self): - if "You can download files up to 500 MB in free mode": + if "You can download files up to 500 MB in free mode" in self.html: self.fail("File too large for free download") self.checkWait() |