diff options
author | Ned Deily <nad@acm.org> | 2014-05-30 23:46:19 -0700 |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2014-05-30 23:46:19 -0700 |
commit | 5f8784b7cc485ea7e34b89dc8cf3762a5088e20f (patch) | |
tree | 86b7e774ad19dcd91a666dc788bfa12d26e907e6 | |
parent | 0edb5c16683c76b65fe5c2d492aef3c570c27d70 (diff) | |
download | cpython-git-5f8784b7cc485ea7e34b89dc8cf3762a5088e20f.tar.gz |
Issue #21572: Change license command to fallback to generic license URL.
-rw-r--r-- | Lib/site.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/site.py b/Lib/site.py index ded653948f..c0149b490d 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -373,7 +373,7 @@ def setcopyright(): dirs.extend([os.path.join(here, os.pardir), here, os.curdir]) builtins.license = _sitebuiltins._Printer( "license", - "See http://www.python.org/download/releases/%.5s/license" % sys.version, + "See http://www.python.org/psf/license/", files, dirs) |