Fix writing to file

This commit is contained in:
ines 2017-03-21 12:35:22 +01:00
parent d74aa428ad
commit c3a9f73896

View File

@ -58,7 +58,7 @@ def create_dirs(package_path, force):
def create_file(file_path, contents):
file_path.touch()
file_path.write_text(contents, encoding='utf-8')
file_path.open('w').write(contents, encoding='utf-8')
def generate_meta():