Skip to content

Commit c0908de

Browse files
committed
Merge branch 'fast' of github.com:oraluben/auditwheel into fast
2 parents 5134001 + 137185b commit c0908de

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/auditwheel/repair.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,9 @@ def _inner_replace(
133133
if n in soname_map:
134134
replacements.append((n, soname_map[n][0]))
135135
if replacements:
136-
replace_works[path] = pool.submit(patcher.replace_needed, path, *replacements)
136+
replace_works[path] = pool.submit(
137+
patcher.replace_needed, path, *replacements
138+
)
137139

138140
assert all(f.exception() is None for f in as_completed(replace_works.values()))
139141
if update_tags:

0 commit comments

Comments
 (0)