Fix missing format specifier in ImagePropertiesFilter log message

Commit a52259e introduced some changes to debug log messages in the
ImagePropertiesFilter but with that came a bug due to a missing format
specifier.

Closes-Bug: #1253875

Change-Id: Ic60b7ba179bd43b80c500be084a1809b6b0b32ca
This commit is contained in:
Matt Riedemann
2013-11-21 20:16:54 -08:00
parent 41eb4ef227
commit 1d769b0c37

View File

@@ -79,7 +79,7 @@ class ImagePropertiesFilter(filters.BaseHostFilter):
if _compare_product_version(hypervisor_version, image_props):
LOG.debug(_("Instance properties %(image_props)s "
"are satisfied by compute host hypervisor "
"version %(hypervisor_version) and "
"version %(hypervisor_version)s and "
"supported instances %(supp_instances)s"),
{'image_props': image_props,
'supp_instances': supp_instances,