From 65346e5b8db7911a91ed6998cb015def5a9e393e Mon Sep 17 00:00:00 2001 From: Leonardo Sala Date: Mon, 7 Aug 2017 14:12:55 +0200 Subject: [PATCH] Script execution --- script/test-time.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/test-time.py b/script/test-time.py index a42702a..41fd28d 100644 --- a/script/test-time.py +++ b/script/test-time.py @@ -58,5 +58,5 @@ now(); ticks = time.time() print "Number of ticks since 12:00am, January 1, 1970:", ticks #print time_str; -localtime = time.localtime(time.time()) -print "Local current time :", localtime +localtime = time.asctime( time.localtime(time.time()) ) +print "Local current time :", localtime \ No newline at end of file