summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/account/FshareVn.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugin/account/FshareVn.py')
-rw-r--r--pyload/plugin/account/FshareVn.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/pyload/plugin/account/FshareVn.py b/pyload/plugin/account/FshareVn.py
index 282a17751..539a739df 100644
--- a/pyload/plugin/account/FshareVn.py
+++ b/pyload/plugin/account/FshareVn.py
@@ -1,8 +1,7 @@
# -*- coding: utf-8 -*-
import re
-
-from time import mktime, strptime
+import time
from pyload.plugin.Account import Account
@@ -35,7 +34,7 @@ class FshareVn(Account):
m = re.search(self.VALID_UNTIL_PATTERN, html)
if m:
premium = True
- validuntil = mktime(strptime(m.group(1), '%I:%M:%S %p %d-%m-%Y'))
+ validuntil = time.mktime(time.strptime(m.group(1), '%I:%M:%S %p %d-%m-%Y'))
trafficleft = self.getTrafficLeft()
else:
premium = False