From: Ned Deily Date: Sat, 31 May 2014 06:45:32 +0000 (-0700) Subject: Issue #21572: Change license command to fallback to generic license URL. X-Git-Tag: v2.7.8~37^2~63 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f45303954c9bb5454127bb6d2c35d29f84547cc;p=thirdparty%2FPython%2Fcpython.git Issue #21572: Change license command to fallback to generic license URL. --- diff --git a/Lib/site.py b/Lib/site.py index f1b0ae8c645d..d2e18f17f328 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])