Add missing newline

This commit is contained in:
Patrick Jentsch 2020-06-10 14:23:43 +02:00
parent fe7ab93513
commit 5980a995e5

View File

@ -73,7 +73,7 @@ common_xml = ('<?xml version="1.0" encoding="UTF-8" standalone="yes"?>\n'
+ ' version="{}"\n'.format(spacy.__version__) + ' version="{}"\n'.format(spacy.__version__)
+ ' model="{}"\n'.format(SPACY_MODELS[args.language]) + ' model="{}"\n'.format(SPACY_MODELS[args.language])
+ ' model_version="{}"\n'.format(nlp.meta['version']) + ' model_version="{}"\n'.format(nlp.meta['version'])
+ ' md5_hash_of_input="{}" />'.format(md5_hash)) + ' md5_hash_of_input="{}" />\n'.format(md5_hash))
with open(output_file_original_filename, 'w+') as output_file_original, \ with open(output_file_original_filename, 'w+') as output_file_original, \
open(output_file_stand_off_filename, 'w+') as output_file_stand_off: open(output_file_stand_off_filename, 'w+') as output_file_stand_off: