[Python-checkins] CVS: python/dist/src/Lib urllib.py,1.133,1.134

Fred L. Drake fdrake@users.sourceforge.net
Sat, 13 Oct 2001 11:37:09 -0700


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

Modified Files:
	urllib.py 
Log Message:
Added missing parameter in call to http_error_default();
reported by Neal Norwitz.


Index: urllib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/urllib.py,v
retrieving revision 1.133
retrieving revision 1.134
diff -C2 -d -r1.133 -r1.134
*** urllib.py	2001/08/27 20:16:53	1.133
--- urllib.py	2001/10/13 18:37:07	1.134
***************
*** 585,589 ****
          if not headers.has_key('www-authenticate'):
              URLopener.http_error_default(self, url, fp,
!                                          errmsg, headers)
          stuff = headers['www-authenticate']
          import re
--- 585,589 ----
          if not headers.has_key('www-authenticate'):
              URLopener.http_error_default(self, url, fp,
!                                          errcode, errmsg, headers)
          stuff = headers['www-authenticate']
          import re