[Python-checkins] python/dist/src/Lib popen2.py,1.30,1.30.2.1

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Thu Feb 10 14:46:17 CET 2005


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv720/Lib

Modified Files:
      Tag: release24-maint
	popen2.py 
Log Message:
Fix typo

Index: popen2.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/popen2.py,v
retrieving revision 1.30
retrieving revision 1.30.2.1
diff -u -d -r1.30 -r1.30.2.1
--- popen2.py	11 Oct 2004 18:12:20 -0000	1.30
+++ popen2.py	10 Feb 2005 13:46:14 -0000	1.30.2.1
@@ -213,7 +213,7 @@
         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:



More information about the Python-checkins mailing list