Skip to content

Commit

Permalink
Cleaner jinjify script line
Browse files Browse the repository at this point in the history
  • Loading branch information
da2x committed Jun 3, 2015
1 parent f5587c5 commit a829e75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/jinjify.py
Expand Up @@ -78,7 +78,7 @@ def jinjify(in_theme, out_theme):
parent = mappings[child]

with io.open(os.path.join(out_theme, "parent"), "w+", encoding='utf-8') as outf:
outf.write(u'{0}'.format(parent) + u'\n')
outf.write(u'{0}\n'.format(parent)

with io.open(os.path.join(out_theme, "engine"), "w+", encoding='utf-8') as outf:
outf.write(u"jinja\n")
Expand Down

0 comments on commit a829e75

Please sign in to comment.