Whitespace normalization.

This commit is contained in:
Tim Peters 2001-03-16 08:29:48 +00:00
parent 4cf97c4972
commit 30edd2387d
6 changed files with 9 additions and 14 deletions

View file

@ -640,7 +640,7 @@ class HTTPBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
def http_error_401(self, req, fp, code, msg, headers):
host = urlparse.urlparse(req.get_full_url())[1]
return self.http_error_auth_reqed('www-authenticate',
return self.http_error_auth_reqed('www-authenticate',
host, req, headers)
@ -650,7 +650,7 @@ class ProxyBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
def http_error_407(self, req, fp, code, msg, headers):
host = req.get_host()
return self.http_error_auth_reqed('proxy-authenticate',
return self.http_error_auth_reqed('proxy-authenticate',
host, req, headers)