diff options
author | PJ Eby <distutils-sig@python.org> | 2006-04-28 18:13:46 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2006-04-28 18:13:46 +0000 |
commit | dcd12bd1088713adb87cfc1344ca30b10869ae36 (patch) | |
tree | 54b2223df05a553a8418e05d6fb5c24b13f7071f /setuptools/command/bdist_egg.py | |
parent | 4e8180190bf443b6389f064886321fcdeccf6ea4 (diff) | |
download | external_python_setuptools-dcd12bd1088713adb87cfc1344ca30b10869ae36.tar.gz external_python_setuptools-dcd12bd1088713adb87cfc1344ca30b10869ae36.tar.bz2 external_python_setuptools-dcd12bd1088713adb87cfc1344ca30b10869ae36.zip |
Backport doc fixes and 2.4-only -m safety check to 0.6 branch
--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4045791
Diffstat (limited to 'setuptools/command/bdist_egg.py')
-rw-r--r-- | setuptools/command/bdist_egg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/bdist_egg.py b/setuptools/command/bdist_egg.py index ae94a869..7f32c369 100644 --- a/setuptools/command/bdist_egg.py +++ b/setuptools/command/bdist_egg.py @@ -393,7 +393,7 @@ def scan_module(egg_dir, base, name, stubs): log.warn("%s: module MAY be using inspect.%s", module, bad) safe = False if '__name__' in symbols and '__main__' in symbols and '.' not in module: - if get_python_version()>="2.4": + if sys.version[:3]=="2.4": # -m works w/zipfiles in 2.5 log.warn("%s: top-level module may be 'python -m' script", module) safe = False return safe |