From aff166418895ce39da5f009992c088c97a0df5a6 Mon Sep 17 00:00:00 2001 From: CryNickSystems Date: Sun, 15 Apr 2012 22:46:18 +0200 Subject: Netload.in RegEx Fix --- module/plugins/accounts/NetloadIn.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'module/plugins') diff --git a/module/plugins/accounts/NetloadIn.py b/module/plugins/accounts/NetloadIn.py index 6febf2ff1..72d9ab554 100755 --- a/module/plugins/accounts/NetloadIn.py +++ b/module/plugins/accounts/NetloadIn.py @@ -23,18 +23,18 @@ from time import time class NetloadIn(Account): __name__ = "NetloadIn" - __version__ = "0.2" + __version__ = "0.21" __type__ = "account" __description__ = """netload.in account plugin""" - __author_name__ = ("RaNaN", "DHMH") - __author_mail__ = ("RaNaN@pyload.org", "DHMH@pyload.org") + __author_name__ = ("RaNaN", "CryNickSystems") + __author_mail__ = ("RaNaN@pyload.org", "webmaster@pcProfil.de") def loadAccountInfo(self, user, req): - page = req.load("http://netload.in/index.php?id=2") - left = r">(\d+) Tage, (\d+) Stunden<" + page = req.load("http://netload.in/index.php?id=2&lang=de") + left = r">(\d+) (Tag|Tage), (\d+) Stunden<" left = re.search(left, page) if left: - validuntil = time() + int(left.group(1)) * 24 * 60 * 60 + int(left.group(2)) * 60 * 60 + validuntil = time() + int(left.group(1)) * 24 * 60 * 60 + int(left.group(3)) * 60 * 60 trafficleft = -1 premium = True else: -- cgit v1.2.3