diff options
| author | R David Murray <rdmurray@bitdance.com> | 2011-03-14 02:49:44 (GMT) |
|---|---|---|
| committer | R David Murray <rdmurray@bitdance.com> | 2011-03-14 02:49:44 (GMT) |
| commit | 74fb7601ba2b5be65e1c8ce66e0dccbb55a5b174 (patch) | |
| tree | ef50292497b4837d2f778675fc782e4464bb405f /Lib/test/test_subprocess.py | |
| parent | dcd79a2d159417ce48336b6bc2bdb4da03ad1c1f (diff) | |
| parent | 6924bd72f588a9944e44cdf8a08db90edb630ebd (diff) | |
| download | cpython-74fb7601ba2b5be65e1c8ce66e0dccbb55a5b174.zip cpython-74fb7601ba2b5be65e1c8ce66e0dccbb55a5b174.tar.gz cpython-74fb7601ba2b5be65e1c8ce66e0dccbb55a5b174.tar.bz2 | |
Merge whitespace fix from 3.2.
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 435ca19..cd84f5c 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -588,7 +588,7 @@ class ProcessTestCase(BaseTestCase): stdout=subprocess.PIPE, stderr=subprocess.PIPE) # ignore errors that indicate the command was not found - if c.exception.errno not in (errno.ENOENT, errno.EACCES): + if c.exception.errno not in (errno.ENOENT, errno.EACCES): raise c.exception def test_issue8780(self): |
