summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2019-03-05 11:32:49 +0200
committerDylan Araps <dylan.araps@gmail.com>2019-03-05 11:32:49 +0200
commit3292a5513d79f3ead1a8f27178b0fab76078f0fd (patch)
tree8877b32904a04b30dbedc75ef1fd04147b634837
parent95c1cc18bcb68fc3b4dfa73bfe75d1bd207ca956 (diff)
docs: update
-rw-r--r--pywal/export.py3
1 files changed, 1 insertions, 2 deletions
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)