txt2ctf.py: flush and close output

This commit is contained in:
Alexey Reznichenko 2017-07-10 13:11:29 +02:00
Родитель 4c15653eb5
Коммит f3120ec530
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -89,7 +89,9 @@ if __name__ == "__main__":
output = open(args.output, "w")
convert([open(d, encoding="utf-8") for d in args.map], inputs, output, args.unk, args.annotated == "True")
output.flush()
if (output != sys.stdout):
output.close()
#####################################################################################################
# Tests