aboutsummaryrefslogtreecommitdiffstats
path: root/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test.py')
-rwxr-xr-xtest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.py b/test.py
index 80d94710d..1938c06c9 100755
--- a/test.py
+++ b/test.py
@@ -75,7 +75,7 @@ def writeFile(fname, fcontents):
if not os.path.exists(os.path.dirname(fname)):
os.makedirs(os.path.dirname(fname))
with open(fname, "w") as f:
- f.write(json.dumps(fcontents, indent=4, sort_keys=True))
+ f.write(json.dumps(fcontents, indent=4, sort_keys=True) + "\n")
# Functionality
# =============