diff options
author | CrazYoshi <mar862002@hotmail.com> | 2014-03-19 11:49:42 +0100 |
---|---|---|
committer | CrazYoshi <mar862002@hotmail.com> | 2014-03-19 11:49:42 +0100 |
commit | 229046d95d5ee4021a4b470347d43669a5efc70f (patch) | |
tree | b5dda65745e71c1ce784f052ad10ca07352db8be /module | |
parent | Easybytez registered user seen as premium account (diff) | |
download | pyload-229046d95d5ee4021a4b470347d43669a5efc70f.tar.xz |
Add space between args on operator >
Add space between args on operator >
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/accounts/EasybytezCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/accounts/EasybytezCom.py b/module/plugins/accounts/EasybytezCom.py index 93a221615..ffd132ba3 100644 --- a/module/plugins/accounts/EasybytezCom.py +++ b/module/plugins/accounts/EasybytezCom.py @@ -49,7 +49,7 @@ class EasybytezCom(Account): validuntil = mktime(strptime(found.group(1), "%d %B %Y")) except Exception, e: self.logError(e) - if validuntil>mktime(gmtime()): + if validuntil > mktime(gmtime()): premium = True trafficleft = -1 else: |