commit:     d39a80e986524b2547bc388075452b5eaedffe87
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 26 19:17:47 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 26 19:22:17 2025 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=d39a80e9

binpkg: tweak error text for failed extract

Don't capitalise 'Extraction'.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 lib/_emerge/Binpkg.py        | 4 ++--
 lib/portage/dbapi/bintree.py | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/_emerge/Binpkg.py b/lib/_emerge/Binpkg.py
index 437111fa10..2c8cadd131 100644
--- a/lib/_emerge/Binpkg.py
+++ b/lib/_emerge/Binpkg.py
@@ -423,7 +423,7 @@ class Binpkg(CompositeTask):
                 self._writemsg_level(
                     colorize(
                         "BAD",
-                        f"!!! Error Extracting '{self._pkg_path}', {e}\n",
+                        f"!!! Error extracting '{self._pkg_path}', {e}\n",
                     ),
                     noiselevel=-1,
                     level=logging.ERROR,
@@ -465,7 +465,7 @@ class Binpkg(CompositeTask):
                 self._writemsg_level(
                     colorize(
                         "BAD",
-                        f"!!! Error Extracting '{self._pkg_path}', {e}\n",
+                        f"!!! Error extracting '{self._pkg_path}', {e}\n",
                     ),
                     noiselevel=-1,
                     level=logging.ERROR,

diff --git a/lib/portage/dbapi/bintree.py b/lib/portage/dbapi/bintree.py
index 54ea0dba17..7d13e500ea 100644
--- a/lib/portage/dbapi/bintree.py
+++ b/lib/portage/dbapi/bintree.py
@@ -428,7 +428,7 @@ class bindbapi(fakedbapi):
                 extractor.start()
                 await extractor.async_wait()
                 if extractor.returncode != os.EX_OK:
-                    raise PortageException(f"Error Extracting '{pkg_path}'")
+                    raise PortageException(f"Error extracting '{pkg_path}'")
             elif binpkg_format == "gpkg":
                 gpkg_args = {}
                 repoconfig = self.bintree.get_local_repo(cpv)

Reply via email to