diff --git a/pywal/export.py b/pywal/export.py index 0a2b8f3..88c98a6 100644 --- a/pywal/export.py +++ b/pywal/export.py @@ -16,8 +16,7 @@ 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'. ", input_file, - "Are non-marker braces escaped? '{{}}'?") + logging.error("Syntax error in template file '%s'.", input_file) return util.save_file(template_data, output_file)