Skip to content

Invoking click tool with --help changes default display results #30

@brutog

Description

@brutog

When using the option to show defaults in help text:

@click.group(context_settings=dict(show_default=True))

I see a bad behavior. When the tool is invoked with --help, it has the wrong path for the config file:

$ toolname --help
Usage: jast [OPTIONS] COMMAND [ARGS]...

Options:
  --config FILE  Read configuration from FILE.  [default:
                 /home/user/.config/toolname/config]
  --help         Show this message and exit.  [default: False]

Commands:
  command1
  command2
  command3

If the tool is invoked without --help, or any command at all, such that the help is forced to display, I see the right default for the configuration file:

$ toolname
Usage: jast [OPTIONS] COMMAND [ARGS]...

Options:
  --config FILE  Read configuration from FILE.  [default:
                 /home/user/.toolnamerc]
  --help         Show this message and exit.  [default: False]

Commands:
  command1
  command2
  command3

This could be confusing for users.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions