Skip to content

Commit

Permalink
Update help text on info command
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyh committed Feb 15, 2017
1 parent 42ae877 commit 880749b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions datacube/scripts/dataset.py
Expand Up @@ -348,9 +348,9 @@ def _reduced_accuracy_decimal_representer(dumper, data):
}


@dataset_cmd.command('info', help="Display dataset id, product, location and provenance")
@click.option('--show-sources', help='Also show sources', is_flag=True, default=False)
@click.option('--show-derived', help='Also show sources', is_flag=True, default=False)
@dataset_cmd.command('info', help="Display dataset information")
@click.option('--show-sources', help='Also show source datasets', is_flag=True, default=False)
@click.option('--show-derived', help='Also show derived datasets', is_flag=True, default=False)
@click.option('-f', help='Output format',
type=click.Choice(_OUTPUT_WRITERS.keys()), default='yaml', show_default=True)
@click.option('--max-depth',
Expand Down

0 comments on commit 880749b

Please sign in to comment.