summaryrefslogtreecommitdiff
path: root/dist/log.py
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2013-07-17 13:20:38 -0400
committerKeith Bostic <keith@wiredtiger.com>2013-07-17 13:20:38 -0400
commit4632fdd19f28290594f1d39e4b766b424639eb5d (patch)
tree7ebfd7c483a25fd45ade15b5c7de14f60aff864d /dist/log.py
parent35d74b293a02d2a6297f6316bb3ef8dc2ec40f64 (diff)
downloadmongo-4632fdd19f28290594f1d39e4b766b424639eb5d.tar.gz
Don't create a file without a trailing newline.
Diffstat (limited to 'dist/log.py')
-rw-r--r--dist/log.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/log.py b/dist/log.py
index e623ff48fa7..aeed3ee5fe6 100644
--- a/dist/log.py
+++ b/dist/log.py
@@ -34,7 +34,7 @@ compare_srcfile(tmp_file, f)
f='../src/log/log_desc.c'
tfile = open(tmp_file, 'w')
-tfile.write('''/* DO NOT EDIT: automatically built by dist/log.py. */''')
+tfile.write('/* DO NOT EDIT: automatically built by dist/log.py. */\n')
tfile.close()
compare_srcfile(tmp_file, f)