From 4632fdd19f28290594f1d39e4b766b424639eb5d Mon Sep 17 00:00:00 2001 From: Keith Bostic Date: Wed, 17 Jul 2013 13:20:38 -0400 Subject: Don't create a file without a trailing newline. --- dist/log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dist/log.py') 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) -- cgit v1.2.1