diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2017-11-09 20:16:07 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-11-09 20:16:07 -0500 |
| commit | 76fefe982d4445248c1933030619eedc764e695b (patch) | |
| tree | de1507d2944422d2f75e716429c0d2fcae387035 /setuptools/command/develop.py | |
| parent | a5add17b554709e6b808e85a9cdbb1785717d2d5 (diff) | |
| parent | ff9bc4902f32c331d917e8bae9136607e48c2738 (diff) | |
| download | python-setuptools-git-76fefe982d4445248c1933030619eedc764e695b.tar.gz | |
Merge branch 'master' into pr1145
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" |
