summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/account/WebshareCz.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugin/account/WebshareCz.py')
-rw-r--r--pyload/plugin/account/WebshareCz.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyload/plugin/account/WebshareCz.py b/pyload/plugin/account/WebshareCz.py
index efa2a0045..5384134ad 100644
--- a/pyload/plugin/account/WebshareCz.py
+++ b/pyload/plugin/account/WebshareCz.py
@@ -1,10 +1,10 @@
# -*- coding: utf-8 -*-
import re
+import time
from hashlib import md5, sha1
from passlib.hash import md5_crypt
-from time import mktime, strptime, time
from pyload.plugin.Account import Account
@@ -34,9 +34,9 @@ class WebshareCz(Account):
expiredate = re.search(self.VALID_UNTIL_PATTERN, html).group(1)
self.logDebug("Expire date: " + expiredate)
- validuntil = mktime(strptime(expiredate, "%Y-%m-%d %H:%M:%S"))
+ validuntil = time.mktime(time.strptime(expiredate, "%Y-%m-%d %H:%M:%S"))
trafficleft = self.parseTraffic(re.search(self.TRAFFIC_LEFT_PATTERN, html).group(1))
- premium = validuntil > time()
+ premium = validuntil > time.time()
return {'validuntil': validuntil, 'trafficleft': -1, 'premium': premium}