summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2014-05-30 23:46:19 -0700
committerNed Deily <nad@acm.org>2014-05-30 23:46:19 -0700
commit5f8784b7cc485ea7e34b89dc8cf3762a5088e20f (patch)
tree86b7e774ad19dcd91a666dc788bfa12d26e907e6
parent0edb5c16683c76b65fe5c2d492aef3c570c27d70 (diff)
downloadcpython-git-5f8784b7cc485ea7e34b89dc8cf3762a5088e20f.tar.gz
Issue #21572: Change license command to fallback to generic license URL.
-rw-r--r--Lib/site.py2
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)