diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-05-22 16:38:05 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-05-22 16:38:05 +0200 |
commit | 872412242c1a6e7217649d9606e9207893513434 (patch) | |
tree | cb6516fb9874f175387aadd1e417259f9502c05a /Plugins | |
parent | remove queue from thread list and implemented own method to get suited (diff) | |
download | pyload-872412242c1a6e7217649d9606e9207893513434.tar.xz |
fixed little bugs
Diffstat (limited to 'Plugins')
-rw-r--r-- | Plugins/RapidshareCom.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Plugins/RapidshareCom.py b/Plugins/RapidshareCom.py index 8adf89e25..6ad0b43e8 100644 --- a/Plugins/RapidshareCom.py +++ b/Plugins/RapidshareCom.py @@ -90,8 +90,9 @@ class RapidshareCom(Plugin): if re.search(r".*The File could not be found.*", self.html[0]) != None or \ re.search(r"(<p>This limit is reached.</p>)", self.html[0]) or \ re.search(r"(.*is momentarily not available.*)", self.html[0]) or \ - re.search(r"(.*The uploader has removed this file from the server.*)", self.html[0]): - return False + re.search(r"(.*The uploader has removed this file from the server.*)", self.html[0]) or \ + re.search(r"(.*This file is suspected to contain illegal content.*)", self.html[0]): + return False else: return True |