Skip to content

Commit

Permalink
adjust override option parameters
Browse files Browse the repository at this point in the history
remove -o because --option is a rarely used option and so don't
squat on that short option alias.

fix the --override help text
  • Loading branch information
n8pease committed Jun 1, 2020
1 parent 6585d25 commit f864905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/daf/butler/cli/cmd/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def butler_import(*args, **kwargs):
@click.option("--seed-config", help="Path to an existing YAML config file to apply (on top of defaults).")
@click.option("--standalone", is_flag=True, help="Include all defaults in the config file in the repo, "
"insulating the repo from changes in package defaults.")
@click.option("--override", "-o", is_flag=True, help="Allow values in the supplied config to override any "
@click.option("--override", is_flag=True, help="Allow values in the supplied config to override all "
"repo settings.")
@click.option("--outfile", "-f", default=None, type=str, help="Name of output file to receive repository "
"configuration. Default is to write butler.yaml into the specified repo.")
Expand Down

0 comments on commit f864905

Please sign in to comment.