From 0db35305e9ff05ef792ae18b9721772f4bdd3efb Mon Sep 17 00:00:00 2001 From: Brian Dolbec Date: Sat, 9 Jul 2022 16:44:44 -0700 Subject: enalyze: Fix missing newline at end of saved rebuild files Bug: https://bugs.gentoo.org/626308 Signed-off-by: Brian Dolbec --- pym/gentoolkit/enalyze/rebuild.py | 1 + 1 file changed, 1 insertion(+) (limited to 'pym') diff --git a/pym/gentoolkit/enalyze/rebuild.py b/pym/gentoolkit/enalyze/rebuild.py index f341680..e3396f3 100644 --- a/pym/gentoolkit/enalyze/rebuild.py +++ b/pym/gentoolkit/enalyze/rebuild.py @@ -401,6 +401,7 @@ class Rebuild(ModuleBase): encoding=_encodings["content"], ) as output: output.write("\n".join(data)) + output.write("\n") print(" - Done") -- cgit v1.2.3