From 79aa1e75b501bbf74a240b01b8ea0d6fe4e45ee3 Mon Sep 17 00:00:00 2001 From: Mike Swanson Date: Tue, 17 Sep 2019 19:25:32 -0700 Subject: [PATCH] scripts/makejson: append newline to the end of the file --- scripts/makejson | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/makejson b/scripts/makejson index 2312d537..4334b623 100755 --- a/scripts/makejson +++ b/scripts/makejson @@ -78,3 +78,4 @@ iwads["freedm.wad"]["version"] = version with open(json_file, "w") as f: json.dump(iwads, f, indent=2, sort_keys=True) + f.write("\n")