From dcd7b8e990ff0f3d29807be78d7d3967c6ad46c4 Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Thu, 6 Jun 2013 14:22:40 -0400 Subject: [PATCH] fix(gen_tmpfiles): Add trailing newline --- gen_tmpfiles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen_tmpfiles.py b/gen_tmpfiles.py index d4f3a9f0d3..5d96f12c16 100755 --- a/gen_tmpfiles.py +++ b/gen_tmpfiles.py @@ -74,7 +74,7 @@ def main(): if opts.output: fd = open(opts.output, 'w') - fd.write('\n'.join(config)) + fd.write('\n'.join(config)+'\n') fd.close() else: print '\n'.join(config)