commit: 3db2edec5461fa52b0e8dced08bebd949550b811
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 26 19:21:43 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 26 19:22:23 2025 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=3db2edec
gpkg: fix typo in error message
Signed-off-by: Sam James <sam <AT> gentoo.org>
lib/portage/gpkg.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/portage/gpkg.py b/lib/portage/gpkg.py
index c83ba46db3..a4f37b143d 100644
--- a/lib/portage/gpkg.py
+++ b/lib/portage/gpkg.py
@@ -1547,7 +1547,7 @@ class gpkg:
manifest: add to manifest
"""
if checksum_info.gpg_output is None:
- raise GPGException("GnuPG signature does not exists")
+ raise GPGException("GnuPG signature does not exist")
signature = io.BytesIO(checksum_info.gpg_output)
signature_tarinfo = tarfile.TarInfo(f"{tarinfo.name}.sig")