diff --git a/spacy/cli/package.py b/spacy/cli/package.py index 5cab2b4bc..6de2fd140 100644 --- a/spacy/cli/package.py +++ b/spacy/cli/package.py @@ -58,7 +58,7 @@ def create_dirs(package_path, force): def create_file(file_path, contents): file_path.touch() - file_path.open('w').write(contents, encoding='utf-8') + file_path.open('w', encoding='utf-8').write(contents) def generate_meta():