From 383948ab7113730d67b636bc5a353e69e9fc9eb7 Mon Sep 17 00:00:00 2001 From: Maran Date: Sun, 9 Dec 2012 13:50:13 +0100 Subject: [PATCH] Added unknown option in case none given --- lib/util.py | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/lib/util.py b/lib/util.py index 393d2c9..6ae8aaa 100644 --- a/lib/util.py +++ b/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) -- 1.7.1