From 835e3a576051d9efb558bfcb7964947ab289c255 Mon Sep 17 00:00:00 2001 From: spoob Date: Tue, 13 Apr 2010 18:54:55 +0200 Subject: Pack Fixes --- module/plugins/hoster/FilefactoryCom.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'module/plugins/hoster/FilefactoryCom.py') diff --git a/module/plugins/hoster/FilefactoryCom.py b/module/plugins/hoster/FilefactoryCom.py index 873fb548e..0125d442e 100644 --- a/module/plugins/hoster/FilefactoryCom.py +++ b/module/plugins/hoster/FilefactoryCom.py @@ -50,9 +50,9 @@ class FilefactoryCom(Plugin): def download_html(self): url = self.parent.url - self.html = self.req.load(url, cookies=True) + self.html = self.load(url, cookies=True) tempurl = re.search('a href=\"(.*?)\".*?button\.basic\.jpg', self.html).group(1) - self.htmlwithlink = self.req.load("http://www.filefactory.com"+tempurl, cookies=True) + self.htmlwithlink = self.load("http://www.filefactory.com"+tempurl, cookies=True) def get_file_url(self): """ returns the absolute downloadable filepath @@ -97,6 +97,5 @@ class FilefactoryCom(Plugin): return True def proceed(self, url, location): - - self.req.download(url, location, cookies=True) + self.download(url, location, cookies=True) -- cgit v1.2.3