From c2948e8c76a2778371b779d56682ec61d48dfbc3 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Tue, 30 Dec 2014 10:30:42 -0500 Subject: Reindent for clarity --- setuptools/tests/test_easy_install.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'setuptools/tests/test_easy_install.py') diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index d4d29e27..ca943948 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -275,10 +275,13 @@ class TestSetupRequires(unittest.TestCase): with TestSetupRequires.create_sdist() as dist_file: with tempdir_context() as temp_install_dir: with environment_context(PYTHONPATH=temp_install_dir): - ei_params = ['--index-url', p_index.url, + ei_params = [ + '--index-url', p_index.url, '--allow-hosts', p_index_loc, - '--exclude-scripts', '--install-dir', temp_install_dir, - dist_file] + '--exclude-scripts', + '--install-dir', temp_install_dir, + dist_file, + ] with argv_context(['easy_install']): # attempt to install the dist. It should fail because # it doesn't exist. -- cgit v1.2.1