diff options
author | spoob <spoob@gmx.de> | 2010-04-13 18:54:55 +0200 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2010-04-13 18:54:55 +0200 |
commit | 835e3a576051d9efb558bfcb7964947ab289c255 (patch) | |
tree | ff776f8b1f225829e897ab301eeb744afa42a742 /module/plugins/hoster/ZshareNet.py | |
parent | filefactory fix (diff) | |
download | pyload-835e3a576051d9efb558bfcb7964947ab289c255.tar.xz |
Pack Fixes
Diffstat (limited to 'module/plugins/hoster/ZshareNet.py')
-rw-r--r-- | module/plugins/hoster/ZshareNet.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/ZshareNet.py b/module/plugins/hoster/ZshareNet.py index 08f28a35c..c3de0e475 100644 --- a/module/plugins/hoster/ZshareNet.py +++ b/module/plugins/hoster/ZshareNet.py @@ -27,14 +27,14 @@ class ZshareNet(Plugin): def download_html(self): url = self.parent.url - self.html[0] = self.req.load(url) + self.html[0] = self.load(url) if "/video/" in url: url = url.replace("/video/", "/download/") elif "/audio/" in url: url = url.replace("/audio/", "/download/") elif "/image/" in url: url = url.replace("/image/", "/download/") - self.html[1] = self.req.load(url, None, {"download": "1"}) + self.html[1] = self.load(url, None, {"download": "1"}) def get_file_url(self): """ returns the absolute downloadable filepath |