diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-09 13:05:38 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-09 13:05:38 +0200 |
commit | 63d747c7c9ff2d6753cee22faa18d14f7d148428 (patch) | |
tree | 1ea729a1feeb0f3f38e806404e69b04b21e49bf4 /module/plugins/hoster | |
parent | merge (diff) | |
download | pyload-63d747c7c9ff2d6753cee22faa18d14f7d148428.tar.xz |
netload premium
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/NetloadIn.py | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/module/plugins/hoster/NetloadIn.py b/module/plugins/hoster/NetloadIn.py index 059d6a8f8..f9e3d31ad 100644 --- a/module/plugins/hoster/NetloadIn.py +++ b/module/plugins/hoster/NetloadIn.py @@ -75,13 +75,6 @@ class NetloadIn(Hoster): self.pyfile.setStatus("downloading") self.proceed(self.url) - def getInfo(self): - self.log.debug("Netload: Info prefetch") - self.download_api_data() - if self.api_data and self.api_data["filename"]: - self.pyfile.name = self.api_data["filename"] - self.pyfile.sync() - def prepare(self): self.download_api_data() @@ -215,7 +208,6 @@ class NetloadIn(Hoster): def proceed(self, url): self.log.debug("Netload: Downloading..") - if self.account: - self.req.load("http://netload.in/index.php", None, { "txtuser" : self.config['username'], "txtpass" : self.config['password'], "txtcheck" : "login", "txtlogin" : ""}, cookies=True) + self.download(url, cookies=True) |