diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-10-25 10:09:37 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-10-25 10:09:37 -0400 |
commit | cb0d6a91d8df8b4c70b95432ad33364181e49c33 (patch) | |
tree | 9b5fc0449c42a64a10b56ed37eefb1ab3d738aa4 /setuptools/command/develop.py | |
parent | 4995726bbdc92ab1f4235dfc8b9ee08c9f365d3e (diff) | |
download | external_python_setuptools-cb0d6a91d8df8b4c70b95432ad33364181e49c33.tar.gz external_python_setuptools-cb0d6a91d8df8b4c70b95432ad33364181e49c33.tar.bz2 external_python_setuptools-cb0d6a91d8df8b4c70b95432ad33364181e49c33.zip |
Feed the hobgoblins (delint).
Diffstat (limited to 'setuptools/command/develop.py')
-rwxr-xr-x | setuptools/command/develop.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/setuptools/command/develop.py b/setuptools/command/develop.py index 85b23c60..959c932a 100755 --- a/setuptools/command/develop.py +++ b/setuptools/command/develop.py @@ -95,7 +95,9 @@ class develop(namespaces.DevelopInstaller, easy_install): path_to_setup = egg_base.replace(os.sep, '/').rstrip('/') if path_to_setup != os.curdir: path_to_setup = '../' * (path_to_setup.count('/') + 1) - resolved = normalize_path(os.path.join(install_dir, egg_path, path_to_setup)) + resolved = normalize_path( + os.path.join(install_dir, egg_path, path_to_setup) + ) if resolved != normalize_path(os.curdir): raise DistutilsOptionError( "Can't get a consistent path to setup script from" |