diff options
Diffstat (limited to 'module/plugins/accounts/FilejungleCom.py')
-rw-r--r-- | module/plugins/accounts/FilejungleCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
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 |