summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-07-22 22:30:54 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-07-22 22:30:54 +1000
commit1e1150bd5612c7afaafd8e7ef65f8e379383f39c (patch)
tree078ae87fbf58351f50ef3e862703a28cc9d0cf5e
parentde47c1beaaa77ee6f50235daba735ccc98ad608c (diff)
template: Minor change.
-rw-r--r--pywal/template.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pywal/template.py b/pywal/template.py
index 1cb4197..de3c110 100644
--- a/pywal/template.py
+++ b/pywal/template.py
@@ -13,6 +13,7 @@ def template(colors, input_file, output_dir):
template_data = util.read_file_raw(input_file)
template_data = "".join(template_data).format(**colors)
template_name = os.path.basename(input_file)
+
util.save_file(template_data, output_dir / template_name)
print(f"export: Exported {template_name}.")