From: Ned Deily Date: Sat, 31 May 2014 06:46:19 +0000 (-0700) Subject: Issue #21572: Change license command to fallback to generic license URL. X-Git-Tag: v3.4.2rc1~475 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5f8784b7cc485ea7e34b89dc8cf3762a5088e20f;p=python Issue #21572: Change license command to fallback to generic license URL. --- diff --git a/Lib/site.py b/Lib/site.py index ded653948f..c0149b490d 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)