Browse Source

Added unknown option in case none given

283
Maran 12 years ago
parent
commit
383948ab71
  1. 3
      lib/util.py

3
lib/util.py

@ -5,6 +5,9 @@ is_verbose = True
# Takes a timestamp and puts out a string with the approxomation of the age
def age(from_date, since_date = None, target_tz=None, include_seconds=False):
if from_date is None:
return "Unknown"
from_date = datetime.fromtimestamp(from_date)
if since_date is None:
since_date = datetime.now(target_tz)

Loading…
Cancel
Save