asterisk: fix missing newline in json

(cherry picked from commit 823ac1645025b68cf9a2fcab02c597619efc06bb)
This commit is contained in:
Yorick van Pelt 2021-08-07 13:43:15 +02:00 committed by github-actions[bot]
parent 67ca9c8126
commit a8a96f20e6
2 changed files with 2 additions and 2 deletions

View File

@ -33,4 +33,4 @@ except:
pass
with open("versions.json", "w") as out_file:
out_file.write(json.dumps(out, sort_keys=True, indent=2))
out_file.write(json.dumps(out, sort_keys=True, indent=2) + "\n")