Fix endless loop in http authentication.

This commit is contained in:
Bastian Kleineidam 2012-09-22 22:21:10 +02:00
parent 653b5f27dd
commit 03ecff22bb

View file

@ -248,7 +248,8 @@ class HttpUrl (internpaturl.InternPatternUrl, proxysupport.ProxySupport):
return response
if not self.auth:
self.construct_auth()
continue
if self.auth:
continue
break
return response