Fix SF #1703110, Incorrect example for add_password() (use uri, not host)
diff --git a/Lib/urllib2.py b/Lib/urllib2.py
index 4e926a1..007e905 100644
--- a/Lib/urllib2.py
+++ b/Lib/urllib2.py
@@ -55,7 +55,10 @@
 
 # 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"})