From: R David Murray Date: Sat, 14 Sep 2013 17:31:44 +0000 (-0400) Subject: #18206: Re-fix license URL. X-Git-Tag: v3.4.0a3~67 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=692ee9eaf0ae910a0a024f0122c4e51df6c04711;p=thirdparty%2FPython%2Fcpython.git #18206: Re-fix license URL. --- diff --git a/Lib/site.py b/Lib/site.py index c4ea6f6adb97..9f935a3c7e67 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -362,7 +362,8 @@ def setcopyright(): for supporting Python development. See www.python.org for more information.""") here = os.path.dirname(os.__file__) builtins.license = _sitebuiltins._Printer( - "license", "See http://www.python.org/%.3s/license.html" % sys.version, + "license", + "See http://www.python.org/download/releases/%.5s/license" % sys.version, ["LICENSE.txt", "LICENSE"], [os.path.join(here, os.pardir), here, os.curdir])