[Python-checkins] cpython (3.2): Fix whitespace
r.david.murray
python-checkins at python.org
Mon Mar 14 03:50:38 CET 2011
http://hg.python.org/cpython/rev/f65aad1226b7
changeset: 68437:f65aad1226b7
branch: 3.2
parent: 68433:67f4ef6094ed
user: R David Murray <rdmurray at bitdance.com>
date: Sun Mar 13 22:48:55 2011 -0400
summary:
Fix whitespace
files:
Lib/test/test_subprocess.py
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -588,7 +588,7 @@
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):
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list