From: Ned Deily Date: Sun, 16 Jul 2017 07:34:27 +0000 (-0400) Subject: Fix test_site test_license_exists_at_url X-Git-Tag: v3.3.7rc1~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8fb577e351040a18c1250bd1c4b2abc458725d5f;p=thirdparty%2FPython%2Fcpython.git Fix test_site test_license_exists_at_url --- diff --git a/Lib/site.py b/Lib/site.py index 7e097014155b..44e61714e453 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -452,7 +452,7 @@ def setcopyright(): here = os.path.dirname(os.__file__) builtins.license = _Printer( "license", - "See http://www.python.org/download/releases/%.5s/license/" % sys.version, + "See https://www.python.org/psf/license/", ["LICENSE.txt", "LICENSE"], [os.path.join(here, os.pardir), here, os.curdir])