summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/NowVideoSx.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/NowVideoSx.py')
-rw-r--r--module/plugins/hoster/NowVideoSx.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/NowVideoSx.py b/module/plugins/hoster/NowVideoSx.py
index 1f65e4a97..22686ca86 100644
--- a/module/plugins/hoster/NowVideoSx.py
+++ b/module/plugins/hoster/NowVideoSx.py
@@ -35,9 +35,9 @@ class NowVideoSx(SimpleHoster):
def handle_free(self, pyfile):
- self.html = self.load("http://www.nowvideo.sx/mobile/video.php", get={'id': self.info['pattern']['ID']})
+ self.data = self.load("http://www.nowvideo.sx/mobile/video.php", get={'id': self.info['pattern']['ID']})
- m = re.search(self.LINK_FREE_PATTERN, self.html)
+ m = re.search(self.LINK_FREE_PATTERN, self.data)
if m is not None:
self.link = m.group(1)