We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb6498a commit 78dcfe0Copy full SHA for 78dcfe0
src/auditwheel/lddtree.py
@@ -570,7 +570,7 @@ def ldd(
570
if realpath is None:
571
log.info("Could not locate %s, skipping.", soname)
572
continue
573
- elif any(fnmatch(str(realpath), e) for e in exclude):
+ if any(fnmatch(str(realpath), e) for e in exclude):
574
log.info("Excluding %s", realpath)
575
_excluded_libs.add(soname)
576
0 commit comments