diff options
author | spoob <spoob@gmx.de> | 2010-01-03 21:12:02 +0100 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2010-01-03 21:12:02 +0100 |
commit | e9dc8ea08452c1555e28f4ac1970b96315ec4376 (patch) | |
tree | 129279f4fc2f95e8a37543fca1c73a1aea726df1 /module/plugins | |
parent | SecuredIn plugin (diff) | |
download | pyload-e9dc8ea08452c1555e28f4ac1970b96315ec4376.tar.xz |
Cleaned Reconnect XML Config
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/__init__.py | 1 | ||||
-rw-r--r-- | module/plugins/hoster/NetloadIn.py | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/module/plugins/__init__.py b/module/plugins/__init__.py index e69de29bb..8b1378917 100644 --- a/module/plugins/__init__.py +++ b/module/plugins/__init__.py @@ -0,0 +1 @@ + diff --git a/module/plugins/hoster/NetloadIn.py b/module/plugins/hoster/NetloadIn.py index 1f7e7d011..0e5245e9e 100644 --- a/module/plugins/hoster/NetloadIn.py +++ b/module/plugins/hoster/NetloadIn.py @@ -40,7 +40,6 @@ class NetloadIn(Plugin): self.req.clear_cookies() self.want_reconnect = False - self.download_api_data() if self.file_exists(): pyfile.status.filename = self.get_file_name() @@ -49,7 +48,6 @@ class NetloadIn(Plugin): self.req.load("http://netload.in/index.php", None, { "txtuser" : self.config['username'], "txtpass" : self.config['password'], "txtcheck" : "login", "txtlogin" : ""}, cookies=True) self.logger.info("Netload: Use Premium Account") pyfile.status.url = self.parent.url - #@TODO: premium?? return True self.download_html() @@ -73,7 +71,6 @@ class NetloadIn(Plugin): src = self.req.load(apiurl, cookies=False, get={"file_id": match.group(1)}) self.api_data = {} if not src == "unknown file_data": - print "apidata:", src lines = src.split(";") self.api_data["exists"] = True self.api_data["fileid"] = lines[0] |