template: Minor change.

This commit is contained in:
Dylan Araps 2017-07-22 22:30:54 +10:00
parent de47c1beaa
commit 1e1150bd56

View File

@ -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}.")