From e4bd904826b3f8cd1f4c44a3daa093f991795ac7 Mon Sep 17 00:00:00 2001 From: zzxwill Date: Mon, 27 Jun 2016 07:41:34 -0400 Subject: [PATCH] Enhance error message Need to add a space between '%(resource)s' and 'not' Change-Id: I554653609deb72acf0e0926de0eeb81426110c03 --- heatclient/common/hook_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heatclient/common/hook_utils.py b/heatclient/common/hook_utils.py index 0dfe63e1..e8d4850d 100644 --- a/heatclient/common/hook_utils.py +++ b/heatclient/common/hook_utils.py @@ -30,7 +30,7 @@ def clear_hook(hc, stack_id, resource_name, hook_type): data={'unset_hook': hook_type}) except exc.HTTPNotFound: logger.error( - _LE("Stack %(stack)s or resource %(resource)s" + _LE("Stack %(stack)s or resource %(resource)s " "not found for hook %(hook_type)"), {'resource': resource_name, 'stack': stack_id, 'hook_type': hook_type})