From: Maran Date: Sun, 9 Dec 2012 12:50:13 +0000 (+0100) Subject: Added unknown option in case none given X-Git-Url: https://git.novaco.in/?a=commitdiff_plain;h=383948ab7113730d67b636bc5a353e69e9fc9eb7;p=electrum-nvc.git Added unknown option in case none given --- 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)