diff --git a/paths_cli/commands/contents.py b/paths_cli/commands/contents.py index 1e9f3164..12d7ce6c 100644 --- a/paths_cli/commands/contents.py +++ b/paths_cli/commands/contents.py @@ -22,16 +22,16 @@ @click.command( 'contents', - short_help="list named objects from an OPS .nc file", + short_help="list named objects from an OPS storage file", ) @INPUT_FILE.clicked(required=True) @click.option('--table', type=str, required=False, help="table to show results from") def contents(input_file, table): - """List the names of named objects in an OPS .nc file. + """List the names of named objects in an OPS storage file. - This is particularly useful when getting ready to use one of simulation - scripts (i.e., to identify exactly how a state or engine is named.) + This is particularly useful when getting ready to use a simulation + command (i.e., to identify exactly how a state or engine is named.) """ storage = INPUT_FILE.get(input_file) print(storage) diff --git a/paths_cli/parameters.py b/paths_cli/parameters.py index e9bff767..e8fbc581 100644 --- a/paths_cli/parameters.py +++ b/paths_cli/parameters.py @@ -96,7 +96,7 @@ OUTPUT_FILE = StorageLoader( param=Option('-o', '--output-file', type=click.Path(writable=True), - help="output ncfile"), + help="output file"), mode='w' )