asterisk: fix missing newline in json

This commit is contained in:
Yorick van Pelt 2021-08-07 13:43:15 +02:00
parent 8d53c9c4e6
commit 823ac16450
No known key found for this signature in database
GPG Key ID: D8D3CC6D951384DE
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")

View File

@ -15,4 +15,4 @@
"sha256": "e7d78716a0deeadf24b7d537cd24c11c2d9a096265eefc9470565c4da0fc54c7",
"version": "18.5.1"
}
}
}