Skip to content

Commit cb6498a

Browse files
committed
update
1 parent 8b5df95 commit cb6498a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/auditwheel/lddtree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ def ldd(
570570
if realpath is None:
571571
log.info("Could not locate %s, skipping.", soname)
572572
continue
573-
if any(fnmatch(str(realpath), e) for e in exclude):
573+
elif any(fnmatch(str(realpath), e) for e in exclude):
574574
log.info("Excluding %s", realpath)
575575
_excluded_libs.add(soname)
576576
continue

0 commit comments

Comments
 (0)