summaryrefslogtreecommitdiff
path: root/pywal/export.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2019-03-05 11:27:54 +0200
committerDylan Araps <dylan.araps@gmail.com>2019-03-05 11:27:54 +0200
commit95c1cc18bcb68fc3b4dfa73bfe75d1bd207ca956 (patch)
treef7c45f5dab52256b818c6f3cc5662f47935acf21 /pywal/export.py
parent2f8d458f8916e31cd9b5a0045510e70d86ae42cd (diff)
docs: update
Diffstat (limited to 'pywal/export.py')
-rw-r--r--pywal/export.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pywal/export.py b/pywal/export.py
index 4139cb7..0a2b8f3 100644
--- a/pywal/export.py
+++ b/pywal/export.py
@@ -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)