Fix SF #1703110, Incorrect example for add_password() (use uri, not host)

This commit is contained in:
Neal Norwitz 2007-04-24 04:54:24 +00:00
parent 6def78ae85
commit 112717dd0b
2 changed files with 8 additions and 2 deletions

View file

@ -55,7 +55,10 @@ import urllib2
# set up authentication info
authinfo = urllib2.HTTPBasicAuthHandler()
authinfo.add_password('realm', 'host', 'username', 'password')
authinfo.add_password(realm='PDQ Application',
uri='https://mahler:8092/site-updates.py',
user='klem',
passwd='geheim$parole')
proxy_support = urllib2.ProxyHandler({"http" : "http://ahad-haam:3128"})