Correct whitespace placement in error message

This commit is contained in:
Elias Probst 2016-01-13 22:29:59 +01:00
parent 10b5728f84
commit 8e37e36ac7

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: