Skip to content

Commit

Permalink
Fix missing format specifier in ImagePropertiesFilter log message
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Matt Riedemann committed Nov 22, 2013
1 parent 41eb4ef commit 1d769b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nova/scheduler/filters/image_props_filter.py
Expand Up @@ -79,7 +79,7 @@ def _compare_product_version(hyper_version, image_props):
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,
Expand Down

0 comments on commit 1d769b0

Please sign in to comment.