]> granicus.if.org Git - python/commitdiff
Issue #21572: Change license command to fallback to generic license URL.
authorNed Deily <nad@acm.org>
Sat, 31 May 2014 06:45:32 +0000 (23:45 -0700)
committerNed Deily <nad@acm.org>
Sat, 31 May 2014 06:45:32 +0000 (23:45 -0700)
Lib/site.py

index f1b0ae8c645d6de779928e4b23386fd4f702796c..d2e18f17f3289249102c0953368fc66ca93a3ffb 100644 (file)
@@ -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])