From 970d09a30a1a4e96d6804483126ee85f5505e7dd Mon Sep 17 00:00:00 2001 From: Robert Bikar Date: Fri, 12 Dec 2025 12:42:34 +0100 Subject: [PATCH] Fix import of broken_rpmlib Mistakenly imported from `..` instead only `.`. --- src/pushsource/_impl/backend/koji_source.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pushsource/_impl/backend/koji_source.py b/src/pushsource/_impl/backend/koji_source.py index fda4e051..adfc8ef3 100644 --- a/src/pushsource/_impl/backend/koji_source.py +++ b/src/pushsource/_impl/backend/koji_source.py @@ -17,7 +17,7 @@ # If kobo.rpmlib is unavailable, let's not immediately crash. # We will hold this exception and re-raise it only if there's an # attempt to use the related functionality. - from .. import broken_rpmlib as rpmlib + from . import broken_rpmlib as rpmlib rpmlib.CAUSE = ex