summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2014-05-31 06:45:32 (GMT)
committerNed Deily <nad@acm.org>2014-05-31 06:45:32 (GMT)
commit3f45303954c9bb5454127bb6d2c35d29f84547cc (patch)
tree2fd2b20160eae64f8161b8c25f9f189597b1494a /Lib
parent9f7f62f06d0b63d20e5e881eed1b7aacea5ecf97 (diff)
downloadcpython-3f45303954c9bb5454127bb6d2c35d29f84547cc.zip
cpython-3f45303954c9bb5454127bb6d2c35d29f84547cc.tar.gz
cpython-3f45303954c9bb5454127bb6d2c35d29f84547cc.tar.bz2
Issue #21572: Change license command to fallback to generic license URL.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/site.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/site.py b/Lib/site.py
index f1b0ae8..d2e18f1 100644
--- a/Lib/site.py
+++ b/Lib/site.py
@@ -436,7 +436,7 @@ def setcopyright():
for supporting Python development. See www.python.org for more information.""")
here = os.path.dirname(os.__file__)
__builtin__.license = _Printer(
- "license", "See http://www.python.org/%.3s/license.html" % sys.version,
+ "license", "See http://www.python.org/psf/license/",
["LICENSE.txt", "LICENSE"],
[os.path.join(here, os.pardir), here, os.curdir])