From 1d769b0c37f24028bceae568ca66bb0426b28b69 Mon Sep 17 00:00:00 2001 From: Matt Riedemann Date: Thu, 21 Nov 2013 20:16:54 -0800 Subject: [PATCH] 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 --- nova/scheduler/filters/image_props_filter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/scheduler/filters/image_props_filter.py b/nova/scheduler/filters/image_props_filter.py index 76e8795fcb57..621c3421151b 100644 --- a/nova/scheduler/filters/image_props_filter.py +++ b/nova/scheduler/filters/image_props_filter.py @@ -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,