From e37e96df064c7b019111b6f3d06fcbc8797c0514 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 2 Oct 2001 18:27:09 +0000 Subject: Correct the URL for the license (only used when the LICENSE[.txt] file is not found). Being fancy: insert the first 3 characters of sys.version in the URL. --- Lib/site.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/site.py b/Lib/site.py index dfe658a..86698df 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -267,7 +267,7 @@ Thanks to CWI, CNRI, BeOpen.com, Digital Creations and a cast of thousands for supporting Python development. See www.python.org for more information.""") here = os.path.dirname(os.__file__) __builtin__.license = _Printer( - "license", "See http://www.pythonlabs.com/products/python2.0/license.html", + "license", "See http://www.python.org/%.3s/license.html" % sys.version, ["LICENSE.txt", "LICENSE"], [os.path.join(here, os.pardir), here, os.curdir]) -- cgit v0.12