summaryrefslogtreecommitdiff
path: root/heatclient/common
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-07-07 15:08:05 +0000
committerGerrit Code Review <review@openstack.org>2016-07-07 15:08:06 +0000
commit641a8b48febb8838ee0779b006fab93e843be4ad (patch)
treea17141126bccacefc6b6eb849853f1b831639874 /heatclient/common
parent914921d26a81db02f4e92b37d5087a39f2a262bc (diff)
parente4bd904826b3f8cd1f4c44a3daa093f991795ac7 (diff)
downloadpython-heatclient-641a8b48febb8838ee0779b006fab93e843be4ad.tar.gz
Merge "Enhance error message"
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})