diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-15 20:17:10 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-15 20:17:10 (GMT) |
commit | 126848a2d8e7b22401d9883549005d6b46339d91 (patch) | |
tree | 2132817395a41e721238de66c086d98702295196 /Lib/test/test_subprocess.py | |
parent | 87541aa296470d10608c3160ec306e436b749e41 (diff) | |
download | cpython-126848a2d8e7b22401d9883549005d6b46339d91.zip cpython-126848a2d8e7b22401d9883549005d6b46339d91.tar.gz cpython-126848a2d8e7b22401d9883549005d6b46339d91.tar.bz2 |
Fix whitespace in test_subprocess
Diffstat (limited to 'Lib/test/test_subprocess.py')
-rw-r--r-- | Lib/test/test_subprocess.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index c2a808c00..c781904 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): |