diff options
| author | Brian Dolbec <dolsen@gentoo.org> | 2022-07-09 16:44:44 -0700 |
|---|---|---|
| committer | Brian Dolbec <dolsen@gentoo.org> | 2022-07-09 16:44:44 -0700 |
| commit | 0db35305e9ff05ef792ae18b9721772f4bdd3efb (patch) | |
| tree | b789cbe6b7d4f4ad5043265b42158a3e2bf2afc3 | |
| parent | 125142667c338eddb3777433e513fbe58e7bfd45 (diff) | |
| download | gentoolkit-0db35305e9ff05ef792ae18b9721772f4bdd3efb.tar.gz | |
enalyze: Fix missing newline at end of saved rebuild files
Bug: https://bugs.gentoo.org/626308
Signed-off-by: Brian Dolbec <dolsen@gentoo.org>
| -rw-r--r-- | pym/gentoolkit/enalyze/rebuild.py | 1 |
1 files changed, 1 insertions, 0 deletions
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") |
