Skip to content

Commit 78dcfe0

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent cb6498a commit 78dcfe0

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-
elif any(fnmatch(str(realpath), e) for e in exclude):
573+
if 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)