changeset: 90920:605349858156 branch: 2.7 parent: 90916:f7bb1d73a341 user: Ned Deily date: Fri May 30 23:45:32 2014 -0700 files: Lib/site.py description: Issue #21572: Change license command to fallback to generic license URL. diff -r f7bb1d73a341 -r 605349858156 Lib/site.py --- a/Lib/site.py Fri May 30 16:19:50 2014 -0400 +++ b/Lib/site.py Fri May 30 23:45:32 2014 -0700 @@ -436,7 +436,7 @@ 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])