Added unknown option in case none given

This commit is contained in:
Maran 2012-12-09 13:50:13 +01:00
parent b564bedd52
commit 383948ab71
1 changed files with 3 additions and 0 deletions

View File

@ -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)