Skip to content

Commit 61f75c4

Browse files
committed
Merge pull request #3448 from stonebig/patch-1
write only relative path in 'RECORD'
2 parents 857a537 + 6716d90 commit 61f75c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pip/wheel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ def _get_script_text(entry):
519519
writer.writerow(row)
520520
for f in generated:
521521
h, l = rehash(f)
522-
writer.writerow((f, h, l))
522+
writer.writerow((normpath(f, lib_dir), h, l))
523523
for f in installed:
524524
writer.writerow((installed[f], '', ''))
525525
shutil.move(temp_record, record)

0 commit comments

Comments
 (0)