Get rid of strftime in favor of total_seconds. Fixes #67

This commit is contained in:
Matt Wright
2013-01-09 14:02:42 -05:00
parent 9726726e5a
commit 6adc26a897
+1 -1
View File
@@ -196,7 +196,7 @@ def config_value(key, app=None, default=None):
def get_max_age(key, app=None):
now = datetime.utcnow()
expires = now + get_within_delta(key + '_WITHIN', app)
return int(expires.strftime('%s')) - int(now.strftime('%s'))
return (expires - now).total_seconds()
def get_within_delta(key, app=None):