diff options
author | zoidberg10 <zoidberg@mujmail.cz> | 2012-02-01 23:39:33 +0100 |
---|---|---|
committer | zoidberg10 <zoidberg@mujmail.cz> | 2012-02-01 23:39:33 +0100 |
commit | 78eed3992134312e6640e1ddf367f35b759d9844 (patch) | |
tree | 01ae97c552caa2309a681923d5450922f4626017 /module/plugins/hoster/NetloadIn.py | |
parent | closed #528 - netload.in (diff) | |
download | pyload-78eed3992134312e6640e1ddf367f35b759d9844.tar.xz |
little plugin fixes
Diffstat (limited to 'module/plugins/hoster/NetloadIn.py')
-rw-r--r-- | module/plugins/hoster/NetloadIn.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/NetloadIn.py b/module/plugins/hoster/NetloadIn.py index b549b3bbd..94d3f65c4 100644 --- a/module/plugins/hoster/NetloadIn.py +++ b/module/plugins/hoster/NetloadIn.py @@ -55,7 +55,7 @@ class NetloadIn(Hoster): __name__ = "NetloadIn" __type__ = "hoster" __pattern__ = r"http://.*netload\.in/(?:datei(.*?)(?:\.htm|/)|index.php?id=10&file_id=)" - __version__ = "0.34" + __version__ = "0.35" __description__ = """Netload.in Download Hoster""" __author_name__ = ("spoob", "RaNaN", "Gregy") __author_mail__ = ("spoob@pyload.org", "ranan@pyload.org", "gregy@gregy.cz") @@ -166,7 +166,7 @@ class NetloadIn(Hoster): self.log.debug("Netload: We will prepare your download") self.final_wait(page) return True - if re.search(r"(We had a reqeust with the IP)", page) is not None: + if ">An access request has been made from IP address <" in page: wait = self.get_wait_time(page) if wait == 0: self.log.debug("Netload: Wait was 0 setting 30") |