s/string_with_vcs/version_string_with_vcs/g

This commit is contained in:
Soren Hansen 2011-01-07 23:44:47 +01:00
parent 509c3b02f1
commit 09a8b83c5f

View File

@ -157,7 +157,7 @@ class NovaLogger(logging.Logger):
extra = {}
if context:
extra.update(_dictify_context(context))
extra.update({"nova_version": version.string_with_vcs()})
extra.update({"nova_version": version.version_string_with_vcs()})
logging.Logger._log(self, level, msg, args, exc_info, extra)
def addHandler(self, handler):