Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update check_spell.py
  • Loading branch information
erickisos authored Oct 4, 2022
commit 5e8294d2746eeeda96f05c94c5458d053bfb7c69
4 changes: 1 addition & 3 deletions scripts/check_spell.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@
# Write merged dictionary file
output_filename = tempfile.mktemp(suffix="_merged_dict.txt")
with open(output_filename, "w") as f:
for e in entries:
f.write(e)
f.write("\n")
f.writelines(entries)

# Run pospell either against all files or the file given on the command line
po_files = sys.argv[1:]
Expand Down