From 126848a2d8e7b22401d9883549005d6b46339d91 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Tue, 15 Mar 2011 21:17:10 +0100 Subject: [PATCH] Fix whitespace in test_subprocess --- Lib/test/test_subprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index c2a808c004b..c781904ed9c 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -558,7 +558,7 @@ class ProcessTestCase(BaseTestCase): # Windows raises IOError except (IOError, OSError) as err: # ignore errors that indicate the command was not found - if err.errno not in (errno.ENOENT, errno.EACCES): + if err.errno not in (errno.ENOENT, errno.EACCES): raise def test_issue8780(self):