We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e43eca commit beb9bfeCopy full SHA for beb9bfe
scripts/check_spell.py
@@ -22,7 +22,9 @@
22
# Write merged dictionary file
23
output_filename = tempfile.mktemp(suffix="_merged_dict.txt")
24
with open(output_filename, "w") as f:
25
- f.writelines(entries)
+ for e in entries:
26
+ f.write(e)
27
+ f.write('\n')
28
29
# Run pospell either against all files or the file given on the command line
30
po_files = sys.argv[1:]
0 commit comments