Issue #21572: Change license command to fallback to generic license URL.

This commit is contained in:
Ned Deily 2014-05-30 23:45:32 -07:00
parent 9f7f62f06d
commit 3f45303954
1 changed files with 1 additions and 1 deletions

View File

@ -436,7 +436,7 @@ def setcopyright():
for supporting Python development. See www.python.org for more information.""") for supporting Python development. See www.python.org for more information.""")
here = os.path.dirname(os.__file__) here = os.path.dirname(os.__file__)
__builtin__.license = _Printer( __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"], ["LICENSE.txt", "LICENSE"],
[os.path.join(here, os.pardir), here, os.curdir]) [os.path.join(here, os.pardir), here, os.curdir])