Commit 747cd179 authored by PJ Eby's avatar PJ Eby

Bugfixes. :(

--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041258
parent 8423e8a6
......@@ -36,7 +36,7 @@ setup(
url = "http://peak.telecommunity.com/DevCenter/setuptools",
test_suite = 'setuptools.tests.test_suite',
packages = find_packages(),
package_data = {'setuptools': ['launcher.exe']},
package_data = {'setuptools': ['*.exe']},
py_modules = ['pkg_resources', 'easy_install'],
zip_safe = False, # We want 'python -m easy_install' to work, for now :(
......
......@@ -23,7 +23,7 @@ class DistroTests(TestCase):
def testCollection(self):
# empty path should produce no distributions
ad = Environment([], python=None)
ad = Environment([], platform=None, python=None)
self.assertEqual(list(ad), [])
self.assertEqual(ad['FooPkg'],[])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment