summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts/Keep2ShareCc.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-08 03:08:17 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-08 03:08:17 +0200
commit035d8c554c9e24206f9dc6f76e17fbe9e4c3607f (patch)
tree3b173d98512f33233d4aeb2906493d3abeea2369 /module/plugins/accounts/Keep2ShareCc.py
parentMerge pull request #1957 from GammaC0de/patch-3 (diff)
downloadpyload-035d8c554c9e24206f9dc6f76e17fbe9e4c3607f.tar.xz
Fixpack (4)
Diffstat (limited to 'module/plugins/accounts/Keep2ShareCc.py')
-rw-r--r--module/plugins/accounts/Keep2ShareCc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/accounts/Keep2ShareCc.py b/module/plugins/accounts/Keep2ShareCc.py
index 32bccc2e4..494f2938f 100644
--- a/module/plugins/accounts/Keep2ShareCc.py
+++ b/module/plugins/accounts/Keep2ShareCc.py
@@ -45,7 +45,7 @@ class Keep2ShareCc(Account):
validuntil = time.mktime(time.strptime(expiredate, "%Y.%m.%d"))
except Exception, e:
- self.log_error(e)
+ self.log_error(e, trace=True)
else:
premium = True if validuntil > time.mktime(time.gmtime()) else False
@@ -56,7 +56,7 @@ class Keep2ShareCc(Account):
trafficleft = self.parse_traffic(m.group(1))
except Exception, e:
- self.log_error(e)
+ self.log_error(e, trace=True)
return {'validuntil': validuntil, 'trafficleft': trafficleft, 'premium': premium}