Skip to content

Commit eddc654

Browse files
authored
fix: logged repaired file path (#610)
fix #609
1 parent c2f4f8a commit eddc654

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/auditwheel/repair.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def repair_wheel(
119119
patcher.replace_needed(path, *replacements)
120120

121121
if update_tags:
122-
ctx.out_wheel = add_platforms(ctx, abis, get_replace_platforms(abis[0]))
122+
output_wheel = add_platforms(ctx, abis, get_replace_platforms(abis[0]))
123123

124124
if strip:
125125
libs_to_strip = [path for (_, path) in soname_map.values()]

src/auditwheel/wheeltools.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,7 @@ def add_platforms(
273273
write_pkg_info(info_fname, info)
274274
else:
275275
logger.info("No WHEEL info change needed.")
276+
wheel_ctx.out_wheel = out_wheel
276277
return out_wheel
277278

278279

0 commit comments

Comments
 (0)