Merge pull request #24212 from terminalmage/clarify-error-msg

Clarify error in rendering template for top file
This commit is contained in:
Justin Findlay 2015-05-28 12:26:19 -06:00
commit cc58624c7e

View file

@ -2920,7 +2920,8 @@ class BaseHighState(object):
try:
top = self.get_top()
except SaltRenderError as err:
ret[tag_name]['comment'] = err.error
ret[tag_name]['comment'] = 'Unable to render top file: '
ret[tag_name]['comment'] += err.error
return ret
except Exception:
trb = traceback.format_exc()