[Python-checkins] r67630 - sandbox/trunk/2to3/lib2to3/fixes/fix_urllib.py

alexandre.vassalotti python-checkins at python.org
Sun Dec 7 04:51:56 CET 2008


Author: alexandre.vassalotti
Date: Sun Dec  7 04:51:56 2008
New Revision: 67630

Log:
Fix typo in the urllib2.HTTPDigestAuthHandler fixer.


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

Modified: sandbox/trunk/2to3/lib2to3/fixes/fix_urllib.py
==============================================================================
--- sandbox/trunk/2to3/lib2to3/fixes/fix_urllib.py	(original)
+++ sandbox/trunk/2to3/lib2to3/fixes/fix_urllib.py	Sun Dec  7 04:51:56 2008
@@ -29,7 +29,7 @@
                      'AbstractBasicAuthHandler',
                      'HTTPBasicAuthHandler', 'ProxyBasicAuthHandler',
                      'AbstractDigestAuthHandler',
-                     'HTTPDigestAuthHander', 'ProxyDigestAuthHandler',
+                     'HTTPDigestAuthHandler', 'ProxyDigestAuthHandler',
                      'HTTPHandler', 'HTTPSHandler', 'FileHandler',
                      'FTPHandler', 'CacheFTPHandler',
                      'UnknownHandler']),


More information about the Python-checkins mailing list