summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts/ShareonlineBiz.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/accounts/ShareonlineBiz.py')
-rw-r--r--module/plugins/accounts/ShareonlineBiz.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/accounts/ShareonlineBiz.py b/module/plugins/accounts/ShareonlineBiz.py
index e6eaf6f27..15a554db0 100644
--- a/module/plugins/accounts/ShareonlineBiz.py
+++ b/module/plugins/accounts/ShareonlineBiz.py
@@ -33,7 +33,7 @@ class ShareonlineBiz(Account):
req = self.getAccountRequest(user)
src = req.load("http://www.share-online.biz/members.php?setlang=en")
validuntil = re.search(r'<td align="left"><b>Package Expire Date:</b></td>\s*<td align="left">(\d+/\d+/\d+)</td>', src).group(1)
- validuntil = int(mktime(strptime(validuntil, "%m/%d/%Y")))
+ validuntil = int(mktime(strptime(validuntil, "%m/%d/%y")))
tmp = {"validuntil":validuntil, "trafficleft":-1}
return tmp