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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C3E4B158041 for ; Wed, 21 Feb 2024 02:08:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D02682BC013; Wed, 21 Feb 2024 02:08:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 AEDF92BC013 for ; Wed, 21 Feb 2024 02:08:23 +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 D944A3431A3 for ; Wed, 21 Feb 2024 02:08:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2380314C5 for ; Wed, 21 Feb 2024 02:08:21 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1708481239.14fe81d73c3330ec31bbc712ada40cc5bdda2c61.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: lib/portage/ X-VCS-Repository: proj/portage X-VCS-Files: lib/portage/binpkg.py X-VCS-Directories: lib/portage/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 14fe81d73c3330ec31bbc712ada40cc5bdda2c61 X-VCS-Branch: master Date: Wed, 21 Feb 2024 02:08:21 +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: 95c47787-b952-4e2f-ab86-de5947d70bab X-Archives-Hash: 8d9e8847e38fa9d5763b249433c3413a commit: 14fe81d73c3330ec31bbc712ada40cc5bdda2c61 Author: Sam James gentoo org> AuthorDate: Wed Feb 21 02:07:19 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed Feb 21 02:07:19 2024 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=14fe81d7 binpkg: add missing newline to gpkg format error Signed-off-by: Sam James gentoo.org> lib/portage/binpkg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/portage/binpkg.py b/lib/portage/binpkg.py index 2078e3ca58..9ecd52cf3c 100644 --- a/lib/portage/binpkg.py +++ b/lib/portage/binpkg.py @@ -67,7 +67,7 @@ def get_binpkg_format(binpkg_path, check_file=False, remote=False): writemsg( colorize( "WARN", - "File {} binpkg format mismatch, actual format: {}".format( + "File {} binpkg format mismatch, actual format: {}\n".format( binpkg_path, file_format ), )