We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For the new 'resolve' case in base.js, parser.formatHelp() produces
usage: _mocha [-h] [--foo FOO] [--foo FOO] Optional arguments: --foo FOO new foo
That is, [-foo FOO] appears twice in usage, and the usual -h, --help Show ... line is missing.
[-foo FOO]
-h, --help Show ...
The help message should be
usage: _mocha [-h] [--foo FOO] Optional arguments: -h, --help Show this help message and exit. --foo FOO new foo
The text was updated successfully, but these errors were encountered:
My https://github.com/hpaulj/argparse/tree/conflictHandler branch is closer to the python code in structure and behavior. It should be read to pull soon.
Sorry, something went wrong.
No problems.Will be waiting for your pull request. Thanks a lot for your efforts.
Merge pull request #47 from hpaulj/conflictHandler
f2503a3
Conflict handler with 'resolve', issue #46
No branches or pull requests
For the new 'resolve' case in base.js, parser.formatHelp() produces
That is,
[-foo FOO]
appears twice in usage, and the usual-h, --help Show ...
line is missing.The help message should be
The text was updated successfully, but these errors were encountered: