From d3b8a59d7e5dfdb8749acb7f2b5bf0436512116a Mon Sep 17 00:00:00 2001 From: c-holtermann Date: Sat, 27 Mar 2021 14:04:55 +0100 Subject: [PATCH] remove debug information for time conversion --- bindings/python/time64.i | 2 -- 1 file changed, 2 deletions(-) diff --git a/bindings/python/time64.i b/bindings/python/time64.i index 09bb4ee415c..cf3408a98bc 100644 --- a/bindings/python/time64.i +++ b/bindings/python/time64.i @@ -109,8 +109,6 @@ PyDateTime_IMPORT; struct tm t; gnc_localtime_r(&$1, &t); - printf("\nConverting %d hours and %d minutes in zone %ld %s to python local time\n", - t.tm_hour, t.tm_min, t.tm_gmtoff/3600, t.tm_isdst ? "DST" : "STD"); $result = PyDateTime_FromDateAndTime(t.tm_year + 1900, t.tm_mon + 1, t.tm_mday, t.tm_hour, t.tm_min, t.tm_sec, 0);