Merge pull request #30342 from eliasp/2015.8-log-message-format

Correct whitespace placement in error message
This commit is contained in:
Mike Place 2016-01-13 14:32:26 -07:00
commit 7276d808ff

View file

@ -181,7 +181,7 @@ def wrap_tmpl_func(render_str):
output = os.linesep.join(output.splitlines())
except SaltRenderError as exc:
log.error("Rendering exception occurred :{0}".format(exc))
log.error("Rendering exception occurred: {0}".format(exc))
#return dict(result=False, data=str(exc))
raise
except Exception: