[Python-checkins] CVS: python/dist/src/Lib sgmllib.py,1.29,1.30

Guido van Rossum gvanrossum@users.sourceforge.net
Sun, 15 Apr 2001 06:01:43 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv1389

Modified Files:
	sgmllib.py 
Log Message:
Fix typo in exception name (SGMLParserError should be SGMLParseError)
found by Neil Norwitz's PyChecker.


Index: sgmllib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/sgmllib.py,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -r1.29 -r1.30
*** sgmllib.py	2001/03/16 20:04:57	1.29
--- sgmllib.py	2001/04/15 13:01:41	1.30
***************
*** 176,180 ****
                      continue
              else:
!                 raise SGMLParserError('neither < nor & ??')
              # We get here only if incomplete matches but
              # nothing else
--- 176,180 ----
                      continue
              else:
!                 raise SGMLParseError('neither < nor & ??')
              # We get here only if incomplete matches but
              # nothing else