]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix test_site test_license_exists_at_url
authorNed Deily <nad@python.org>
Sun, 16 Jul 2017 07:34:27 +0000 (03:34 -0400)
committerNed Deily <nad@python.org>
Sun, 16 Jul 2017 07:34:27 +0000 (03:34 -0400)
Lib/site.py

index 7e097014155b4fbd0e9f73b5ddfeb3fa6b784612..44e61714e4535cfeaeaabb8c82fc0366b702eec3 100644 (file)
@@ -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])