summaryrefslogtreecommitdiff
path: root/heatclient/common
diff options
context:
space:
mode:
authorzzxwill <zzxwill@gmail.com>2016-06-27 07:41:34 -0400
committerzzxwill <zzxwill@gmail.com>2016-06-27 07:43:20 -0400
commite4bd904826b3f8cd1f4c44a3daa093f991795ac7 (patch)
tree452cc986315300f40cc3c81c2a702ab45354fcf0 /heatclient/common
parent8ffcf99b7cb7386886f266935125e634b3dca335 (diff)
downloadpython-heatclient-e4bd904826b3f8cd1f4c44a3daa093f991795ac7.tar.gz
Enhance error message
Need to add a space between '%(resource)s' and 'not' Change-Id: I554653609deb72acf0e0926de0eeb81426110c03
Diffstat (limited to 'heatclient/common')
-rw-r--r--heatclient/common/hook_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/heatclient/common/hook_utils.py b/heatclient/common/hook_utils.py
index 0dfe63e..e8d4850 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})