diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-07-28 10:47:25 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-07-28 10:47:25 +0200 |
commit | d6ff616fd5c4b2636fd05d59050bd54363c67cee (patch) | |
tree | c6f2e6935e94827858529cc1d49b70227dedfb3f /module/plugins | |
parent | fixed gui startup (diff) | |
download | pyload-d6ff616fd5c4b2636fd05d59050bd54363c67cee.tar.xz |
fix netload
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/hoster/NetloadIn.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/NetloadIn.py b/module/plugins/hoster/NetloadIn.py index f9ea5f698..d913d3a6f 100644 --- a/module/plugins/hoster/NetloadIn.py +++ b/module/plugins/hoster/NetloadIn.py @@ -237,13 +237,13 @@ class NetloadIn(Hoster): def proceed(self, url): self.log.debug("Netload: Downloading..") - self.download(url, cookies=True) + self.download(url) - check = self.checkDownload({"empty": re.compile(r"^$"), "offline": re.compile("\* The file was deleted")}) + check = self.checkDownload({"empty": re.compile(r"^$"), "offline": re.compile("The file was deleted")}) if check == "empty": self.log.info(_("Downloaded File was empty")) self.retry() - else check == "offline": + elif check == "offline": self.offline() |