-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
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
Change from "_" to "-" #821
Comments
The argparse library will do this internally. For example, '--a-b' will be parsed as |
Oh yes. That modification did introduce some bug. We change all parameters from underscore to hyphen, but argparse will only convert optional parameters in Python, thus required args becomes buggy. But we fixed it in #822. Now this feature should work as previous. |
In commit f0bb84d arguments names are change to be compliant to GNU standards but they didn't change to new argument names in any place where args object that is returned from function is used.
The text was updated successfully, but these errors were encountered: