diff options
| author | guyroz <none@none> | 2011-09-20 00:05:59 +0300 |
|---|---|---|
| committer | guyroz <none@none> | 2011-09-20 00:05:59 +0300 |
| commit | 3b8de2876b38e5b2afc4210e6d37c5b90fecb8a4 (patch) | |
| tree | d061111458729e011030ff89908744d2a379cc29 /setuptools/tests/test_easy_install.py | |
| parent | 6aea437b8fdf7db27d99a3d725231896dd7343cb (diff) | |
| download | external_python_setuptools-3b8de2876b38e5b2afc4210e6d37c5b90fecb8a4.tar.gz external_python_setuptools-3b8de2876b38e5b2afc4210e6d37c5b90fecb8a4.tar.bz2 external_python_setuptools-3b8de2876b38e5b2afc4210e6d37c5b90fecb8a4.zip | |
fixing regression -- generator syntax on python3
--HG--
branch : distribute
extra : rebase_source : 3708d2ca5f9a8fc2398204dbcb3febb6d61e134b
Diffstat (limited to 'setuptools/tests/test_easy_install.py')
| -rw-r--r-- | setuptools/tests/test_easy_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index 1ae0ba70..4150ad10 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -67,7 +67,7 @@ class TestEasyInstallTest(unittest.TestCase): old_platform = sys.platform try: - name, script = get_script_args(dist).next()[0:2] + name, script = [i for i in get_script_args(dist).next()][0:2] finally: sys.platform = old_platform |
