summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/NowVideoAt.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-11-03 16:57:55 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-11-03 16:57:55 +0100
commit03f3b86f500c495932fd118b54569d92f700847c (patch)
treead3632f59e0889c7485f2261113aef3da983b4dc /module/plugins/hoster/NowVideoAt.py
parent[SimpleHoster] Fix file_info stuff (diff)
downloadpyload-03f3b86f500c495932fd118b54569d92f700847c.tar.xz
Code cosmetics about file_info and other stuff
Diffstat (limited to 'module/plugins/hoster/NowVideoAt.py')
-rw-r--r--module/plugins/hoster/NowVideoAt.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/NowVideoAt.py b/module/plugins/hoster/NowVideoAt.py
index 04308d7dd..bcf3165d2 100644
--- a/module/plugins/hoster/NowVideoAt.py
+++ b/module/plugins/hoster/NowVideoAt.py
@@ -8,7 +8,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo
class NowVideoAt(SimpleHoster):
__name__ = "NowVideoAt"
__type__ = "hoster"
- __version__ = "0.03"
+ __version__ = "0.04"
__pattern__ = r'http://(?:www\.)?nowvideo\.(at|ch|co|eu|sx)/(video|mobile/#/videos)/(?P<ID>\w+)'
@@ -31,7 +31,7 @@ class NowVideoAt(SimpleHoster):
def handleFree(self):
- self.html = self.load("http://www.nowvideo.at/mobile/video.php", get={'id': self.file_info['ID']})
+ self.html = self.load("http://www.nowvideo.at/mobile/video.php", get={'id': self.info['ID']})
m = re.search(self.LINK_PATTERN, self.html)
if m is None: