This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author zooko
Recipients tarek, zooko
Date 2009-10-25.14:37:06
SpamBayes Score 0.0048929285
Marked as misclassified No
Message-id <1256481428.97.0.691214379627.issue7202@psf.upfronthosting.co.za>
In-reply-to
Content
This command:

python setup.py --verbose darcsver

works as expected -- the presence of '--verbose' increases the verbosity
of logging.

This command:

python setup.py darcsver --verbose

does not increase the verbosity, nor does it tell me that the
"--verbose" option is an option unknown to the "darcsver" command.

This command:

python setup.py darcsver --quux

gives this helpful output:

usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: setup.py --help [cmd1 cmd2 ...] or: setup.py --help-commands or:
setup.py cmd --help

error: option --quux not recognized

I think that the middle command ("python setup.py darcsver --verbose")
ought to behave either like the first command by increasing the
verbosity, or like the last command by telling the user that "--verbose"
is not a known option in that position.

This is also http://bitbucket.org/tarek/distribute/issue/78/
History
Date User Action Args
2009-10-25 14:37:09zookosetrecipients: + zooko, tarek
2009-10-25 14:37:08zookosetmessageid: <1256481428.97.0.691214379627.issue7202@psf.upfronthosting.co.za>
2009-10-25 14:37:07zookolinkissue7202 messages
2009-10-25 14:37:06zookocreate