From a72765c89557b2245eee17f97556cc6b8f2aedd8 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Sat, 28 Apr 2007 18:32:00 +0000 Subject: [PATCH] Corrected --version output to give LGPL as the license, not GPL (spotted by mrpouit). git-svn-id: file:///home/talex/Backups/sf.net/Subversion/zero-install/trunk/0launch@1714 9f8c893c-44ee-0310-b757-c8ca8341c71e --- 0alias | 4 ++-- 0store | 4 ++-- zeroinstall/injector/cli.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/0alias b/0alias index 77869be..ba9e516 100755 --- a/0alias +++ b/0alias @@ -38,11 +38,11 @@ parser.disable_interspersed_args() if options.version: import zeroinstall print "0alias (zero-install) " + zeroinstall.version - print "Copyright (C) 2005 Thomas Leonard" + print "Copyright (C) 2007 Thomas Leonard" print "This program comes with ABSOLUTELY NO WARRANTY," print "to the extent permitted by law." print "You may redistribute copies of this program" - print "under the terms of the GNU General Public License." + print "under the terms of the GNU Lesser General Public License." print "For more information about these matters, see the file named COPYING." sys.exit(0) diff --git a/0store b/0store index e1dec88..f63ea63 100755 --- a/0store +++ b/0store @@ -28,11 +28,11 @@ if options.verbose: if options.version: import zeroinstall print "0store (zero-install) " + zeroinstall.version - print "Copyright (C) 2005 Thomas Leonard" + print "Copyright (C) 2007 Thomas Leonard" print "This program comes with ABSOLUTELY NO WARRANTY," print "to the extent permitted by law." print "You may redistribute copies of this program" - print "under the terms of the GNU General Public License." + print "under the terms of the GNU Lesser General Public License." print "For more information about these matters, see the file named COPYING." sys.exit(0) diff --git a/zeroinstall/injector/cli.py b/zeroinstall/injector/cli.py index 71070d6..0aeb644 100755 --- a/zeroinstall/injector/cli.py +++ b/zeroinstall/injector/cli.py @@ -385,11 +385,11 @@ def main(command_args): elif options.version: import zeroinstall print "0launch (zero-install) " + zeroinstall.version - print "Copyright (C) 2006 Thomas Leonard" + print "Copyright (C) 2007 Thomas Leonard" print "This program comes with ABSOLUTELY NO WARRANTY," print "to the extent permitted by law." print "You may redistribute copies of this program" - print "under the terms of the GNU General Public License." + print "under the terms of the GNU Lesser General Public License." print "For more information about these matters, see the file named COPYING." elif options.set_selections: from zeroinstall.injector import selections, qdom, run -- 2.11.4.GIT