From: John P. Davis Date: Sun, 11 Jul 2004 21:24:15 +0000 (+0000) Subject: fixed usage() to reflect that -C must be the last option passed) X-Git-Tag: CATALYST_2_0_6_916~966 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c23aca24b5e40820b26103276376602258ed4521;p=catalyst.git fixed usage() to reflect that -C must be the last option passed) git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@407 d1e1f19c-881f-0410-ab34-b69fee027534 --- diff --git a/catalyst b/catalyst index 4228e84c..943240bb 100755 --- a/catalyst +++ b/catalyst @@ -1,7 +1,7 @@ #!/usr/bin/python # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo/src/catalyst/catalyst,v 1.40 2004/07/11 21:22:07 zhen Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/catalyst,v 1.41 2004/07/11 21:24:15 zhen Exp $ # Maintained in full by John Davis @@ -13,12 +13,12 @@ __version__="1.0.9" conf_values={} def usage(): - print "Usage catalyst [-f file] [variable=value...]" + print "Usage catalyst [options] [-C variable=value...]" print " -h --help print this help message" print " -v --version display version information" print " -d --debug enable debugging" print " -c --config use specified configuration file" - print " -C --cli catalyst commandline" + print " -C --cli catalyst commandline (MUST BE LAST OPTION)" print " -f --file read specfile" print " -V --verbose verbose output"