Skip to content

Commit

Permalink
Rename variable for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed Apr 11, 2022
1 parent c46526a commit f51df53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setuptools/command/editable_wheel.py
Expand Up @@ -79,8 +79,8 @@ def _install_namespaces(self, installation_dir, pth_prefix):
if not dist.namespace_packages:
return

target = Path(self.project_dir, self.pakcage_dir.get("", ".")).resolve()
installer = _NamespaceInstaller(dist, installation_dir, pth_prefix, target)
src_root = Path(self.project_dir, self.pakcage_dir.get("", ".")).resolve()
installer = _NamespaceInstaller(dist, installation_dir, pth_prefix, src_root)
installer.install_namespaces()

def _create_wheel_file(self, bdist_wheel):
Expand Down

0 comments on commit f51df53

Please sign in to comment.