From: Amaury Forgeot d'Arc Date: Wed, 18 Jun 2008 21:18:27 +0000 (+0000) Subject: The ssl certificate at https://sf.net is not valid. X-Git-Tag: v2.6b1~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7248fd833cebce0328cfc3a343275119616f0f25;p=thirdparty%2FPython%2Fcpython.git The ssl certificate at https://sf.net is not valid. Switch to https://sourceforge.net --- diff --git a/Lib/test/test_socket_ssl.py b/Lib/test/test_socket_ssl.py index 1a8af33e1fb5..0ccb7d3371d4 100644 --- a/Lib/test/test_socket_ssl.py +++ b/Lib/test/test_socket_ssl.py @@ -48,7 +48,7 @@ class ConnectedTests(unittest.TestCase): socket.RAND_add("this is a random string", 75.0) with test_support.transient_internet(): - f = self.urlopen('https://sf.net') + f = self.urlopen('https://sourceforge.net') buf = f.read() f.close()