From: Holger Levsen Date: Fri, 12 Oct 2012 16:00:04 +0000 (+0200) Subject: gah X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=42d280ccd02a8fad2c5a428e8128ab5fd8757ac6;p=profitbricks%2Fjenkins-build-scripts.git gah --- diff --git a/db_add.py b/db_add.py index 2cc22cd..df56f06 100755 --- a/db_add.py +++ b/db_add.py @@ -30,15 +30,15 @@ def db_add_job(con, name): return cur.fetchone()[0] def harmonize_timeformat(time): - logger_debug('1 time = %s' % time) + logger.debug('1 time = %s' % time) if time != 'NULL': if time.isdigit(): - logger_debug('2 time = %s' % time) + logger.debug('2 time = %s' % time) time = "to_timestamp('%s')" % time - logger_debug('3 time = %s' % time) + logger.debug('3 time = %s' % time) else: time = "'%s'" % time - logger_debug('4 time = %s' % time) + logger.debug('4 time = %s' % time) return time def db_add_build(con, db_id, number, start, end, status):