diff options
author | mkaay <mkaay@mkaay.de> | 2011-07-26 23:32:40 +0200 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2011-07-26 23:32:40 +0200 |
commit | 25b5d9df7d8c2132f767c12d4bdd7c58325fb84e (patch) | |
tree | 7da842ec54334c689fa3dca52ced87ca720e6925 /module/plugins | |
parent | new locale (diff) | |
download | pyload-25b5d9df7d8c2132f767c12d4bdd7c58325fb84e.tar.xz |
fixed gui startup
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/hoster/NetloadIn.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/plugins/hoster/NetloadIn.py b/module/plugins/hoster/NetloadIn.py index 6ab0184a8..f9ea5f698 100644 --- a/module/plugins/hoster/NetloadIn.py +++ b/module/plugins/hoster/NetloadIn.py @@ -239,9 +239,11 @@ class NetloadIn(Hoster): self.download(url, cookies=True) - check = self.checkDownload({"empty": re.compile(r"^$")}) + 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": + self.offline() |