summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2014-05-31 06:47:41 (GMT)
committerNed Deily <nad@acm.org>2014-05-31 06:47:41 (GMT)
commitd53c41eacc7250b06bb65b3fe0c31ce6cf8d716b (patch)
tree3028484ea9083e20d4b5499b52c801cc9990bafc
parent42535f010415e14dd4eb5424d5caf476097521ea (diff)
parent5f8784b7cc485ea7e34b89dc8cf3762a5088e20f (diff)
downloadcpython-d53c41eacc7250b06bb65b3fe0c31ce6cf8d716b.zip
cpython-d53c41eacc7250b06bb65b3fe0c31ce6cf8d716b.tar.gz
cpython-d53c41eacc7250b06bb65b3fe0c31ce6cf8d716b.tar.bz2
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 ded6539..c0149b4 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)