diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-08-05 00:44:48 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-08-05 00:44:48 +0200 |
commit | 05fc433ba450589b43d7830c4d2b1a3d866c9d66 (patch) | |
tree | da62b1046dc7a05e751068adddd8b20d8a0a8b3a | |
parent | another rs fix (diff) | |
download | pyload-05fc433ba450589b43d7830c4d2b1a3d866c9d66.tar.xz |
3rd rs fix
-rw-r--r-- | Plugins/RapidshareCom.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Plugins/RapidshareCom.py b/Plugins/RapidshareCom.py index 6bd96cf78..2e60af5ff 100644 --- a/Plugins/RapidshareCom.py +++ b/Plugins/RapidshareCom.py @@ -59,6 +59,7 @@ class RapidshareCom(Plugin): tries += 1 if tries > 5: + raise Exception, "Error when downloading, HTML dump:"+ html[0] + html[1] break return True @@ -143,8 +144,9 @@ class RapidshareCom(Plugin): self.start_dl = True return re.search(file_url_pattern, self.html[1]).group(1) else: - print self.html[1] #test print - raise Exception, "Error when retrieving download url" + pass + #print self.html[1] #test print + #raise Exception, "Error when retrieving download url" def get_file_name(self): if self.html[0] == None: |