[Python-checkins] distutils2: fixed kwargs setup -- a test needs to be added to run setup.py

tarek.ziade python-checkins at python.org
Mon Apr 12 22:57:12 CEST 2010


tarek.ziade pushed 9c3c8b512c8f to distutils2:

http://hg.python.org/distutils2/rev/9c3c8b512c8f
changeset:   112:9c3c8b512c8f
tag:         tip
user:        Tarek Ziade <tarek at ziade.org>
date:        Mon Apr 12 22:57:05 2010 +0200
summary:     fixed kwargs setup -- a test needs to be added to run setup.py
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':
-    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