diff options
| author | PJ Eby <distutils-sig@python.org> | 2005-07-18 01:39:45 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2005-07-18 01:39:45 +0000 |
| commit | fb5402ed3da11d6957e9200dc75156b4ee9ff9b9 (patch) | |
| tree | 940c06d0e3d88ace603a430c4bf3f6f98b94c204 /setuptools/command/develop.py | |
| parent | a771556e62dab603b00fb8c64d752a6924cc8005 (diff) | |
| download | python-setuptools-bitbucket-fb5402ed3da11d6957e9200dc75156b4ee9ff9b9.tar.gz | |
Massive API refactoring; see setuptools.txt changelog for details. Also,
add ``#egg=project-version`` link support, and docs on how to make your
package available for EasyInstall to find.
Diffstat (limited to 'setuptools/command/develop.py')
| -rwxr-xr-x | setuptools/command/develop.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/develop.py b/setuptools/command/develop.py index 40d22b28..1eb8bf6b 100755 --- a/setuptools/command/develop.py +++ b/setuptools/command/develop.py @@ -1,6 +1,6 @@ from setuptools.command.easy_install import easy_install from distutils.util import convert_path -from pkg_resources import Distribution, PathMetadata +from pkg_resources import Distribution, PathMetadata, normalize_path from distutils import log import sys, os @@ -49,7 +49,7 @@ class develop(easy_install): # Make a distribution for the package's source self.dist = Distribution( - self.egg_path, + normalize_path(self.egg_path), PathMetadata(self.egg_path, os.path.abspath(ei.egg_info)), project_name = ei.egg_name ) |
