diff options
author | Ed Leafe <ed@leafe.com> | 2011-01-27 13:52:10 -0600 |
---|---|---|
committer | Ed Leafe <ed@leafe.com> | 2011-01-27 13:52:10 -0600 |
commit | a495294ccc40a868b79144085da38196759f699c (patch) | |
tree | 67974ae6568c5ebbd14ce24c51724fdc1596b8d1 /nova/service.py | |
parent | bc94ab2278c592a944a3bc9e4aa4c3e9e491f23c (diff) | |
download | nova-a495294ccc40a868b79144085da38196759f699c.tar.gz nova-a495294ccc40a868b79144085da38196759f699c.tar.xz nova-a495294ccc40a868b79144085da38196759f699c.zip |
Fixed formatting issues in current codebase.
Diffstat (limited to 'nova/service.py')
-rw-r--r-- | nova/service.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nova/service.py b/nova/service.py index 2c30997f2..59648adf2 100644 --- a/nova/service.py +++ b/nova/service.py @@ -157,8 +157,9 @@ class Service(object): report_interval = FLAGS.report_interval if not periodic_interval: periodic_interval = FLAGS.periodic_interval - logging.audit(_("Starting %s node (version %s)"), topic, - version.version_string_with_vcs()) + vcs_string = version.version_string_with_vcs() + logging.audit(_("Starting %(topic)s node (version %(vcs_string)s)") + % locals()) service_obj = cls(host, binary, topic, manager, report_interval, periodic_interval) |