From 7af365edda5d30feb135511dc25428405fef89af Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 9 Oct 2014 22:10:16 +0200 Subject: [PATCH] fix printing error --- src/common/connection_handlers_events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/connection_handlers_events.py b/src/common/connection_handlers_events.py index 08eb74296..af9c1662f 100644 --- a/src/common/connection_handlers_events.py +++ b/src/common/connection_handlers_events.py @@ -227,7 +227,7 @@ class TimeResultReceivedEvent(nec.NetworkIncomingEvent, HelperEvent): # Remove the trailing "+00:00" utc_time = utc_time[:-6] else: - log.info("Wrong timezone defintion: %s" % str(e)) + log.info("Wrong timezone defintion: %s" % utc_time) return try: t = datetime.datetime.strptime(utc_time, '%Y-%m-%dT%H:%M:%S')