[Python-checkins] commit of r41780 - sandbox/trunk/setuptools/setup.py

phillip.eby python-checkins at python.org
Tue Dec 20 18:18:31 CET 2005


Author: phillip.eby
Date: Tue Dec 20 18:18:31 2005
New Revision: 41780

Modified:
   sandbox/trunk/setuptools/setup.py
Log:
Fix typo.  :(


Modified: sandbox/trunk/setuptools/setup.py
==============================================================================
--- sandbox/trunk/setuptools/setup.py	(original)
+++ sandbox/trunk/setuptools/setup.py	Tue Dec 20 18:18:31 2005
@@ -40,7 +40,7 @@
     test_suite = 'setuptools.tests.test_suite',
     
     packages = find_packages(),
-    package_data = {'setuptools':'*.exe'},
+    package_data = {'setuptools':['*.exe']},
     py_modules = ['pkg_resources', 'easy_install', 'site'],
 
     zip_safe = False,   # We want 'python -m easy_install' to work, for now :(


More information about the Python-checkins mailing list