docs: update

This commit is contained in:
Dylan Araps
2019-03-05 11:27:54 +02:00
parent 2f8d458f89
commit 95c1cc18bc

View File

@ -16,8 +16,8 @@ def template(colors, input_file, output_file=None):
try:
template_data = "".join(template_data).format(**colors)
except ValueError:
logging.error("Syntax error in template file '%s'. "
"Are non-marker braces escaped? '{{}}'?" % input_file)
logging.error("Syntax error in template file '%s'. ", input_file,
"Are non-marker braces escaped? '{{}}'?")
return
util.save_file(template_data, output_file)