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/XupIn.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/plugins/hoster/XupIn.py') diff --git a/module/plugins/hoster/XupIn.py b/module/plugins/hoster/XupIn.py index 2a914b3d5..f48a3e944 100644 --- a/module/plugins/hoster/XupIn.py +++ b/module/plugins/hoster/XupIn.py @@ -36,10 +36,10 @@ class XupIn(Plugin): return re.search(file_name_pattern, self.html).group(1) def file_exists(self): - self.html = self.req.load(self.url) + self.html = self.load(self.url) if re.search(r"File does not exist", self.html) != None or self.html == "": return False return True def proceed(self, url, location): - self.req.download(url, location, post=self.posts) + self.download(url, location, post=self.posts) -- cgit v1.2.3