aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/develop.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/command/develop.py')
-rwxr-xr-xsetuptools/command/develop.py4
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
)