summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-06-24 18:07:40 (GMT)
committerGeorg Brandl <georg@python.org>2012-06-24 18:07:40 (GMT)
commit87903c14bc6536ea0ef6d1505eb46629937fc102 (patch)
tree2a0a8b3f19707d051cd47b0b0e26e5adc5b52260
parentcb1c8b70552b9fc9ed04aa2c4632b7e2f1240cdb (diff)
parent26af3b223f11a59ca7802596e985b34ba2933e9c (diff)
downloadcpython-87903c14bc6536ea0ef6d1505eb46629937fc102.zip
cpython-87903c14bc6536ea0ef6d1505eb46629937fc102.tar.gz
cpython-87903c14bc6536ea0ef6d1505eb46629937fc102.tar.bz2
Merge with 3.2.
-rw-r--r--Lib/test/test_xmlrpc_net.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_xmlrpc_net.py b/Lib/test/test_xmlrpc_net.py
index 9ba89b2..dfb5f9a 100644
--- a/Lib/test/test_xmlrpc_net.py
+++ b/Lib/test/test_xmlrpc_net.py
@@ -39,7 +39,7 @@ class CurrentTimeTest(unittest.TestCase):
def test_python_builders(self):
# Get the list of builders from the XMLRPC buildbot interface at
# python.org.
- server = xmlrpclib.ServerProxy("http://www.python.org/dev/buildbot/all/xmlrpc/")
+ server = xmlrpclib.ServerProxy("http://buildbot.python.org/all/xmlrpc/")
try:
builders = server.getAllBuilders()
except socket.error as e: