summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/XupIn.py
diff options
context:
space:
mode:
authorGravatar spoob <spoob@gmx.de> 2010-04-13 18:54:55 +0200
committerGravatar spoob <spoob@gmx.de> 2010-04-13 18:54:55 +0200
commit835e3a576051d9efb558bfcb7964947ab289c255 (patch)
treeff776f8b1f225829e897ab301eeb744afa42a742 /module/plugins/hoster/XupIn.py
parentfilefactory fix (diff)
downloadpyload-835e3a576051d9efb558bfcb7964947ab289c255.tar.xz
Pack Fixes
Diffstat (limited to 'module/plugins/hoster/XupIn.py')
-rw-r--r--module/plugins/hoster/XupIn.py4
1 files changed, 2 insertions, 2 deletions
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)