diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-09-28 15:03:59 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-09-28 15:03:59 +0200 |
commit | 72a6a690e039c4ce9e9fa88fac75446080171cca (patch) | |
tree | f953721f28e5664be91354f6c1ed840ba262d2fa /module/plugins/hoster | |
parent | parser warnings (diff) | |
download | pyload-72a6a690e039c4ce9e9fa88fac75446080171cca.tar.xz |
rs fix
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/RapidshareCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/RapidshareCom.py b/module/plugins/hoster/RapidshareCom.py index f2fd3661c..8e1e65ee2 100644 --- a/module/plugins/hoster/RapidshareCom.py +++ b/module/plugins/hoster/RapidshareCom.py @@ -131,13 +131,13 @@ class RapidshareCom(Hoster): content = f.read() f.close() if "You need RapidPro to download more files from your IP address" in content: - remove(f) + remove(dl) self.setWait(60) self.log.info(_("Already downloading from this ip address, waiting 60 seconds")) self.wait() self.handleFree() elif "Download auth invalid" in content: - remove(f) + remove(dl) self.log.info(_("Invalid Auth Code, download will be restarted")) self.offset += 5 self.handleFree() |