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 8041957 commit d7ce569Copy full SHA for d7ce569
python/pip_install/extract_wheels/lib/purelib.py
@@ -60,8 +60,8 @@ def _spread_purelib(purelib_dir: pathlib.Path, root_dir: str) -> None:
60
for child in purelib_dir.iterdir():
61
if child.is_dir():
62
backport_copytree(src=child, dst=pathlib.Path(root_dir, child.name))
63
- elif not pathlib.Path(root_dir, grandchild.name).exists():
+ elif not pathlib.Path(root_dir, child.name).exists():
64
shutil.copy(
65
- src=str(grandchild),
+ src=str(child),
66
dst=root_dir,
67
)
0 commit comments