From d4751c2d0797796af14c4a8ab0746eba91cebc99 Mon Sep 17 00:00:00 2001 From: zoidberg10 Date: Fri, 3 Feb 2012 00:47:08 +0100 Subject: fix ul.to --- module/plugins/accounts/FilejungleCom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/plugins/accounts/FilejungleCom.py') diff --git a/module/plugins/accounts/FilejungleCom.py b/module/plugins/accounts/FilejungleCom.py index 4fa4a06d8..8ac25c201 100644 --- a/module/plugins/accounts/FilejungleCom.py +++ b/module/plugins/accounts/FilejungleCom.py @@ -23,7 +23,7 @@ from time import mktime, strptime class FilejungleCom(Account): __name__ = "FilejungleCom" - __version__ = "0.1" + __version__ = "0.11" __type__ = "account" __description__ = """filejungle.com account plugin""" __author_name__ = ("zoidberg") @@ -40,7 +40,7 @@ class FilejungleCom(Account): found = re.search(self.TRAFFIC_LEFT_PATTERN, html) if found: premium = True - validuntil = mktime(strptime(found.group(1), "%d %B %Y")) + validuntil = mktime(strptime(found.group(1), "%d %b %Y")) else: premium = False validuntil = -1 -- cgit v1.2.3