summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_subprocess.py
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2011-03-14 02:48:55 (GMT)
committerR David Murray <rdmurray@bitdance.com>2011-03-14 02:48:55 (GMT)
commit6924bd72f588a9944e44cdf8a08db90edb630ebd (patch)
tree4429e1f2355c76fe16575bb5ff7ce3fd89003f4e /Lib/test/test_subprocess.py
parent384069c2e8f2d06d0b6b36955032999307a17775 (diff)
downloadcpython-6924bd72f588a9944e44cdf8a08db90edb630ebd.zip
cpython-6924bd72f588a9944e44cdf8a08db90edb630ebd.tar.gz
cpython-6924bd72f588a9944e44cdf8a08db90edb630ebd.tar.bz2
Fix whitespace
Diffstat (limited to 'Lib/test/test_subprocess.py')
-rw-r--r--Lib/test/test_subprocess.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index f1b49d5..5100a20 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):