diff options
Diffstat (limited to 'module/plugins/hoster/XupIn.py')
-rw-r--r-- | module/plugins/hoster/XupIn.py | 4 |
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) |