[Python-checkins] distutils2: Fix bug in 2.5 support.

tarek.ziade python-checkins at python.org
Sat Apr 24 13:36:55 CEST 2010


tarek.ziade pushed 196fe3f69be6 to distutils2:

http://hg.python.org/distutils2/rev/196fe3f69be6
changeset:   121:196fe3f69be6
user:        Martin v. L?wis <martin at v.loewis.de>
date:        Sat Apr 24 12:34:29 2010 +0200
summary:     Fix bug in 2.5 support.
files:       src/setup.py

diff --git a/src/setup.py b/src/setup.py
--- a/src/setup.py
+++ b/src/setup.py
@@ -65,7 +65,7 @@
 
 setup_kwargs = {}
 if sys.version < '2.6':
-    setup_kwargs['scripts'] = 'distutils2/mkpkg.py'
+    setup_kwargs['scripts'] = ['distutils2/mkpkg.py']
 
 setup (name="Distutils2",
        version=VERSION,

--
Repository URL: http://hg.python.org/distutils2


More information about the Python-checkins mailing list