From 7e58576d0cf938feb0027196a567955855ce88f6 Mon Sep 17 00:00:00 2001 From: Anton Beloglazov Date: Wed, 14 Nov 2012 16:23:27 +1100 Subject: [PATCH] Fixed a bug in a log message format --- neat/locals/collector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neat/locals/collector.py b/neat/locals/collector.py index e7ce19d..eb9d128 100644 --- a/neat/locals/collector.py +++ b/neat/locals/collector.py @@ -592,7 +592,7 @@ def get_cpu_mhz(vir_connection, physical_core_mhz, previous_cpu_time, if log.isEnabledFor(logging.DEBUG): log.debug('VM %s: current_cpu_time < cpu_time: ' + 'previous CPU time %d, ' + - 'current CPU time %d, ' + + 'current CPU time %d, ', uuid, cpu_time, current_cpu_time) log.debug('VM %s: using previous CPU MHz %d, ' + uuid, previous_cpu_mhz[uuid])