commit:     9c69170735376db5de49c972f1d1c7b7628f3904
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 15 10:52:14 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 15 11:14:38 2025 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=9c691707

bintree: Use writemsg() instead of writemsg_stdout()

Nothing else in bintree.py uses writemsg_stdout() and there appears to
be no reason why we should do it here.

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
Part-of: https://github.com/gentoo/portage/pull/1469
Signed-off-by: Sam James <sam <AT> gentoo.org>

 lib/portage/dbapi/bintree.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/portage/dbapi/bintree.py b/lib/portage/dbapi/bintree.py
index 83fd1275a8..ab5673e898 100644
--- a/lib/portage/dbapi/bintree.py
+++ b/lib/portage/dbapi/bintree.py
@@ -17,7 +17,7 @@ portage.proxy.lazyimport.lazyimport(
     "portage.package.ebuild.fetch:_check_distfile,_hide_url_passwd",
     "portage.update:update_dbentries",
     "portage.util:atomic_ofstream,ensure_dirs,normalize_path,"
-    + "writemsg,writemsg_stdout",
+    + "writemsg",
     "portage.util.time:unix_to_iso_time",
     "portage.util.path:first_existing",
     "portage.util._async.SchedulerInterface:SchedulerInterface",
@@ -1662,7 +1662,7 @@ class binarytree:
                     rmt_idx = pkgindex
                     if getbinpkg_refresh or repo.frozen:
                         extra_info = exc.extra_info if verbose else ""
-                        writemsg_stdout(
+                        writemsg(
                             colorize(
                                 "GOOD",
                                 _(

Reply via email to