aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2024-02-21 02:07:19 +0000
committerSam James <sam@gentoo.org>2024-02-21 02:07:19 +0000
commit14fe81d73c3330ec31bbc712ada40cc5bdda2c61 (patch)
tree0439e4167601e7f71f6ea95ef419b94cf26e6956
parentactions: Use pytest-rerunfailures for pytest-xdist worker crash (diff)
downloadportage-14fe81d73c3330ec31bbc712ada40cc5bdda2c61.tar.gz
portage-14fe81d73c3330ec31bbc712ada40cc5bdda2c61.tar.bz2
portage-14fe81d73c3330ec31bbc712ada40cc5bdda2c61.zip
binpkg: add missing newline to gpkg format error
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--lib/portage/binpkg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/portage/binpkg.py b/lib/portage/binpkg.py
index 2078e3ca5..9ecd52cf3 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
),
)