summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-01-11 21:38:29 +0000
committerGerrit Code Review <review@openstack.org>2015-01-11 21:38:29 +0000
commit74890542bcc6f821546c97ba71818ecbe892165c (patch)
tree006457f8adbc9c80d2bd2ab94a205f3c59e9c374
parentdf35680b673eabe0b664f17663f2272711b2e5b4 (diff)
parent234b007b7529bd82ea0995730b16032a3ecd65cc (diff)
downloadoslo-concurrency-74890542bcc6f821546c97ba71818ecbe892165c.tar.gz
Merge "make time format for processutils match lockutils"
-rw-r--r--oslo_concurrency/processutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oslo_concurrency/processutils.py b/oslo_concurrency/processutils.py
index 78f8f14..b203fb4 100644
--- a/oslo_concurrency/processutils.py
+++ b/oslo_concurrency/processutils.py
@@ -222,7 +222,7 @@ def execute(*cmd, **kwargs):
obj.stdin.close() # pylint: disable=E1101
_returncode = obj.returncode # pylint: disable=E1101
end_time = time.time() - start_time
- LOG.log(loglevel, 'CMD "%s" returned: %s in %ss' %
+ LOG.log(loglevel, 'CMD "%s" returned: %s in %0.3fs' %
(sanitized_cmd, _returncode, end_time))
if result is not None:
(stdout, stderr) = result