Hi,
Attached you will find a fix for a small bug in http.py
Index: http.py
===================================================================
--- http.py (revision 332)
+++ http.py (revision 333)
@@ -25,8 +25,8 @@
doc = N_("URL of the HTTP authentication service"))
def check_password(self, user, password):
- acctmgr = HTTPPasswordMgrWithDefaultRealm()
- acctmgr.add_password(None, self.auth_url, user, password)
+ mgr= HTTPPasswordMgrWithDefaultRealm()
+ mgr.add_password(None, self.auth_url, user, password)
try:
build_opener(HTTPBasicAuthHandler(mgr),
HTTPDigestAuthHandler(mgr)).open(self.auth_url)
regards
Mario