Commit 4da7cdd3 authored by Tarek Ziade's avatar Tarek Ziade

Removed spurious UserWarnings. Fixes #134

--HG--
branch : distribute
extra : rebase_source : be9d958a083e556228597d044267d7e15a826649
parent c8f35c14
...@@ -15,6 +15,7 @@ CHANGES ...@@ -15,6 +15,7 @@ CHANGES
* Issue 133: Added --no-find-links to easy_install * Issue 133: Added --no-find-links to easy_install
* Added easy_install --user * Added easy_install --user
* Issue 100: Fixed develop --user not taking '.' in PYTHONPATH into account * Issue 100: Fixed develop --user not taking '.' in PYTHONPATH into account
* Issue 134: removed spurious UserWarnings. Patch by VanLindberg
------ ------
0.6.10 0.6.10
......
...@@ -2332,7 +2332,8 @@ class Distribution(object): ...@@ -2332,7 +2332,8 @@ class Distribution(object):
if modname in ('pkg_resources', 'setuptools', 'site'): if modname in ('pkg_resources', 'setuptools', 'site'):
continue continue
fn = getattr(sys.modules[modname], '__file__', None) fn = getattr(sys.modules[modname], '__file__', None)
if fn and normalize_path(fn).startswith(loc): if fn and (normalize_path(fn).startswith(loc) or
fn.startswith(self.location)):
continue continue
issue_warning( issue_warning(
"Module %s was already imported from %s, but %s is being added" "Module %s was already imported from %s, but %s is being added"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment