[Python-checkins] r67770 - sandbox/trunk/2to3/lib2to3/fixes/fix_imports.py

alexandre.vassalotti python-checkins at python.org
Sun Dec 14 22:15:36 CET 2008


Author: alexandre.vassalotti
Date: Sun Dec 14 22:15:36 2008
New Revision: 67770

Log:
Fix typo: html.paser -> html.parser.


Modified:
   sandbox/trunk/2to3/lib2to3/fixes/fix_imports.py

Modified: sandbox/trunk/2to3/lib2to3/fixes/fix_imports.py
==============================================================================
--- sandbox/trunk/2to3/lib2to3/fixes/fix_imports.py	(original)
+++ sandbox/trunk/2to3/lib2to3/fixes/fix_imports.py	Sun Dec 14 22:15:36 2008
@@ -43,7 +43,7 @@
            'SimpleXMLRPCServer': 'xmlrpc.server',
            'httplib': 'http.client',
            'htmlentitydefs' : 'html.entities',
-           'HTMLParser' : 'html.paser',
+           'HTMLParser' : 'html.parser',
            'Cookie': 'http.cookies',
            'cookielib': 'http.cookiejar',
            'BaseHTTPServer': 'http.server',


More information about the Python-checkins mailing list