diff options
author | 2014-12-26 18:48:57 +0100 | |
---|---|---|
committer | 2014-12-26 18:48:57 +0100 | |
commit | 24bf61533574a5ff81559d60627a7a9b2a926696 (patch) | |
tree | 9bb5cc5f0010c95233f04856afce23925df056d8 /module/plugins/accounts | |
parent | [LomafileCom] Mark dead (diff) | |
download | pyload-24bf61533574a5ff81559d60627a7a9b2a926696.tar.xz |
[NowVideoSx] Fixup
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r-- | module/plugins/accounts/NowVideoSx.py (renamed from module/plugins/accounts/NowVideoAt.py) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/module/plugins/accounts/NowVideoAt.py b/module/plugins/accounts/NowVideoSx.py index 234984b6b..e2dcaba12 100644 --- a/module/plugins/accounts/NowVideoAt.py +++ b/module/plugins/accounts/NowVideoSx.py @@ -7,10 +7,10 @@ from time import gmtime, mktime, strptime from module.plugins.Account import Account -class NowVideoAt(Account): - __name__ = "NowVideoAt" +class NowVideoSx(Account): + __name__ = "NowVideoSx" __type__ = "account" - __version__ = "0.01" + __version__ = "0.02" __description__ = """NowVideo.at account plugin""" __license__ = "GPLv3" @@ -25,7 +25,7 @@ class NowVideoAt(Account): trafficleft = -1 premium = None - html = req.load("http://www.nowvideo.at/premium.php") + html = req.load("http://www.nowvideo.sx/premium.php") m = re.search(self.VALID_UNTIL_PATTERN, html) if m: @@ -49,7 +49,7 @@ class NowVideoAt(Account): def login(self, user, data, req): - html = req.load("http://www.nowvideo.at/login.php", + html = req.load("http://www.nowvideo.sx/login.php", post={'user': user, 'pass': data['password']}) if ">Invalid login details" is html: |