From 8fb577e351040a18c1250bd1c4b2abc458725d5f Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Sun, 16 Jul 2017 03:34:27 -0400 Subject: [PATCH] Fix test_site test_license_exists_at_url --- Lib/site.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]) -- 2.47.3