1
0
Fork 0

Adding quotation marks around fields in authors map.

This commit is contained in:
jochan 2017-11-10 13:17:31 -08:00
parent 9863ea816f
commit 7eac04f2d7
1 changed files with 1 additions and 1 deletions

View File

@ -88,4 +88,4 @@ def replace_author(author):
with open("authors.txt", "r") as in_authors, open("reformatted-authors.txt", "w") as out_authors:
for author in in_authors:
out_authors.write("{0}={1}\n".format(author.strip(), replace_author(author).strip()))
out_authors.write("\"{0}\"=\"{1}\"\n".format(author.strip(), replace_author(author).strip()))