Skip to content

Commit

Permalink
🐛 fix format problem in registry.json
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Feb 11, 2018
1 parent 85c07ae commit fef4407
Show file tree
Hide file tree
Showing 3 changed files with 751 additions and 751 deletions.
2 changes: 1 addition & 1 deletion makedemo.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def minify_js(src_js, min_js):
config = jinja2_env.get_template('config.json')
config_json = config.render(names=name_dict, registry=rendering_dict)
registry_file = REGISTRY_FILE
with codecs.open(registry_file, 'wb', 'utf-8') as f:
with codecs.open(registry_file, 'w', 'utf-8') as f:
f.write(config_json)

readme = jinja2_env.get_template('README.md')
Expand Down
Loading

0 comments on commit fef4407

Please sign in to comment.