Added missing parameter in call to http_error_default();

reported by Neal Norwitz.
This commit is contained in:
Fred Drake 2001-10-13 18:37:07 +00:00
parent 2f8f4d3678
commit c680ae8002
1 changed files with 1 additions and 1 deletions

View File

@ -584,7 +584,7 @@ class FancyURLopener(URLopener):
http://www.ics.uci.edu/pub/ietf/http/draft-ietf-http-v10-spec-00.txt"""
if not headers.has_key('www-authenticate'):
URLopener.http_error_default(self, url, fp,
errmsg, headers)
errcode, errmsg, headers)
stuff = headers['www-authenticate']
import re
match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff)