aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-07-31 16:31:18 +0000
committerPJ Eby <distutils-sig@python.org>2005-07-31 16:31:18 +0000
commit1bb64d070e9be1b67322417c0a11e199bce6fe99 (patch)
tree3668d807668146495591016fe0f88f7e89e438eb /setup.py
parent54bb8e4003534a9af54028ef719eda5ba6088bac (diff)
downloadexternal_python_setuptools-1bb64d070e9be1b67322417c0a11e199bce6fe99.tar.gz
external_python_setuptools-1bb64d070e9be1b67322417c0a11e199bce6fe99.tar.bz2
external_python_setuptools-1bb64d070e9be1b67322417c0a11e199bce6fe99.zip
Misc. bugs reported by Ian Bicking and Ashley Walsh.
--HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041168
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index d2d2b008..7302f710 100755
--- a/setup.py
+++ b/setup.py
@@ -44,7 +44,7 @@ setup(
entry_points = {
"distutils.commands" : [
"%(cmd)s = setuptools.command.%(cmd)s:%(cmd)s" % locals()
- for cmd in SETUP_COMMANDS if cmd!="build_py" or sys.version>="2.4"
+ for cmd in SETUP_COMMANDS if cmd!="build_py" or sys.version<"2.4"
],
},