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
I'm getting error messages that look like this:
Usage: guild info [OPTIONS] PACKAGE Try "guild info --help" for help. Error: Missing argument "package".
IMO the last line should read Missing argument PACKAGES - "packages" is not reflected in the usage.
Missing argument PACKAGES
I believe the issue is here (and similar patterns in exceptions.py):
https://github.com/pallets/click/blob/master/click/exceptions.py#L121
where self.param.opts short-circuits the use of the human readable name, which would use metavar as expected.
self.param.opts
The text was updated successfully, but these errors were encountered:
This looks like a dupe of #598
Sorry, something went wrong.
Fixed #709
No branches or pull requests
I'm getting error messages that look like this:
IMO the last line should read
Missing argument PACKAGES
- "packages" is not reflected in the usage.I believe the issue is here (and similar patterns in exceptions.py):
https://github.com/pallets/click/blob/master/click/exceptions.py#L121
where
self.param.opts
short-circuits the use of the human readable name, which would use metavar as expected.The text was updated successfully, but these errors were encountered: