Skip to content

Commit ef26238

Browse files
authored
Fix import of broken_rpmlib (#689)
Mistakenly imported from `..` instead of only `.`
1 parent c93b6ab commit ef26238

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pushsource/_impl/backend/koji_source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# If kobo.rpmlib is unavailable, let's not immediately crash.
1818
# We will hold this exception and re-raise it only if there's an
1919
# attempt to use the related functionality.
20-
from .. import broken_rpmlib as rpmlib
20+
from . import broken_rpmlib as rpmlib
2121

2222
rpmlib.CAUSE = ex
2323

0 commit comments

Comments
 (0)