diff options
Diffstat (limited to 'Lib/popen2.py')
-rw-r--r-- | Lib/popen2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/popen2.py b/Lib/popen2.py index 3f84bf9..54543be 100644 --- a/Lib/popen2.py +++ b/Lib/popen2.py @@ -213,7 +213,7 @@ def _test(): raise ValueError("wrote %r read %r" % (teststr, got)) got = e.read() if got: - raise ValueError("unexected %r on stderr" % (got,)) + raise ValueError("unexpected %r on stderr" % (got,)) for inst in _active[:]: inst.wait() if _active: |