Fix whitespace in test_subprocess

This commit is contained in:
Antoine Pitrou 2011-03-15 21:17:10 +01:00
parent 87541aa296
commit 126848a2d8
1 changed files with 1 additions and 1 deletions

View File

@ -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):