From 036ae75689a8bdbb38c471e417bc71becb423bb0 Mon Sep 17 00:00:00 2001 From: zhufl Date: Tue, 21 May 2019 14:59:53 +0800 Subject: [PATCH] Fix missing print format This is to: 1. Add missing print format for "%(hook_type)". 2. Add ws between words in log message "notavailable". Change-Id: Iaee8697c95f66bff0536db9a266158a3cbc89412 --- heatclient/common/hook_utils.py | 2 +- heatclient/exc.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/heatclient/common/hook_utils.py b/heatclient/common/hook_utils.py index e9706908..c08005cf 100644 --- a/heatclient/common/hook_utils.py +++ b/heatclient/common/hook_utils.py @@ -29,7 +29,7 @@ def clear_hook(hc, stack_id, resource_name, hook_type): except exc.HTTPNotFound: logger.error( "Stack %(stack)s or resource %(resource)s " - "not found for hook %(hook_type)", + "not found for hook %(hook_type)s", {'resource': resource_name, 'stack': stack_id, 'hook_type': hook_type}) diff --git a/heatclient/exc.py b/heatclient/exc.py index cc640da9..e3ac2f97 100644 --- a/heatclient/exc.py +++ b/heatclient/exc.py @@ -77,8 +77,7 @@ class HTTPMultipleChoices(HTTPException): code = 300 def __str__(self): - self.details = _("Requested version of Heat API is not" - "available.") + self.details = _("Requested version of Heat API is not available.") return (_("%(name)s (HTTP %(code)s) %(details)s") % { 'name': reflection.get_class_name(self, fully_qualified=False),