From 64b8fc3f09adb0843bae6f118da8147b8697e4dd Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Thu, 1 Jan 2015 11:23:57 -0500 Subject: Reindent for clarity --- setuptools/tests/test_windows_wrappers.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'setuptools') diff --git a/setuptools/tests/test_windows_wrappers.py b/setuptools/tests/test_windows_wrappers.py index 70e23a40..b6c1e573 100644 --- a/setuptools/tests/test_windows_wrappers.py +++ b/setuptools/tests/test_windows_wrappers.py @@ -89,8 +89,14 @@ class TestCLI(WrapperTester): by preceding each of them with back slashes. """ self.create_script(tmpdir) - cmd = [str(tmpdir / 'foo.exe'), 'arg1', 'arg 2', - 'arg "2\\"', 'arg 4\\', 'arg5 a\\\\b'] + cmd = [ + str(tmpdir / 'foo.exe'), + 'arg1', + 'arg 2', + 'arg "2\\"', + 'arg 4\\', + 'arg5 a\\\\b', + ] proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stdin=subprocess.PIPE) stdout, stderr = proc.communicate('hello\nworld\n'.encode('ascii')) actual = stdout.decode('ascii').replace('\r\n', '\n') -- cgit v1.2.1