diff options
author | PJ Eby <distutils-sig@python.org> | 2005-08-14 20:18:56 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-08-14 20:18:56 +0000 |
commit | a20ad75bb1be6af2e06ad05956fc6001fcc3437b (patch) | |
tree | a33b52e907b4f7cf871671e023df4ae3b69a8254 /setuptools/dist.py | |
parent | a3ae3c46f0619d1273ed651f50352f5bb0425a80 (diff) | |
download | external_python_setuptools-a20ad75bb1be6af2e06ad05956fc6001fcc3437b.tar.gz external_python_setuptools-a20ad75bb1be6af2e06ad05956fc6001fcc3437b.tar.bz2 external_python_setuptools-a20ad75bb1be6af2e06ad05956fc6001fcc3437b.zip |
On second thought, don't. :( Walter Doerwald's situation isn't really
compatible with namespace packages, even if I do manage to hack up a way
to make it work.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041200
Diffstat (limited to 'setuptools/dist.py')
-rw-r--r-- | setuptools/dist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/dist.py b/setuptools/dist.py index 1285c340..02458858 100644 --- a/setuptools/dist.py +++ b/setuptools/dist.py @@ -54,7 +54,7 @@ def check_nsp(dist, attr, value): for nsp in value: for name in dist.iter_distribution_names(): - if name==nsp or name.startswith(nsp+'.'): break + if name.startswith(nsp+'.'): break else: raise DistutilsSetupError( "Distribution contains no modules or packages for " + |