From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9B9ED158094 for ; Sat, 9 Jul 2022 23:56:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A627AE07D8; Sat, 9 Jul 2022 23:55:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7A28DE07D8 for ; Sat, 9 Jul 2022 23:55:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 05DC0335D99 for ; Sat, 9 Jul 2022 23:55:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E224391 for ; Sat, 9 Jul 2022 23:55:56 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1657410284.0db35305e9ff05ef792ae18b9721772f4bdd3efb.dolsen@gentoo> Subject: [gentoo-commits] proj/gentoolkit:master commit in: pym/gentoolkit/enalyze/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/enalyze/rebuild.py X-VCS-Directories: pym/gentoolkit/enalyze/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 0db35305e9ff05ef792ae18b9721772f4bdd3efb X-VCS-Branch: master Date: Sat, 9 Jul 2022 23:55:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f85d10e7-cb05-4ddb-a5bb-9b5af38f0976 X-Archives-Hash: 3ef0e1d4b23e0aaca38b1bae7a8160ed commit: 0db35305e9ff05ef792ae18b9721772f4bdd3efb Author: Brian Dolbec gentoo org> AuthorDate: Sat Jul 9 23:44:44 2022 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sat Jul 9 23:44:44 2022 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=0db35305 enalyze: Fix missing newline at end of saved rebuild files Bug: https://bugs.gentoo.org/626308 Signed-off-by: Brian Dolbec gentoo.org> pym/gentoolkit/enalyze/rebuild.py | 1 + 1 file changed, 1 insertion(+) 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")