diff --git a/oort/cli/cli.py b/oort/cli/cli.py index 0033f61..7979ffa 100644 --- a/oort/cli/cli.py +++ b/oort/cli/cli.py @@ -216,7 +216,7 @@ def telescopes(state, organisation=None): help="Zip the data files (FITS and XISF) before sending to the cloud. Default is False.") @click.option('-d', '--dataset', required=False, nargs=1, type=click.STRING, - help="If provided, oort will use a single dataset with that name to contain all the data of the folder (and its subfolders).") + help="Put all data contained in the folder into a single dataset designated by its name or UUID.") @basic_options @pass_state def upload(state, folder, organisation=None, telescope=None, force=False, zip=False, dataset=None): diff --git a/oort/cli/helpers.py b/oort/cli/helpers.py index dc7cca9..b50ee6d 100644 --- a/oort/cli/helpers.py +++ b/oort/cli/helpers.py @@ -30,7 +30,7 @@ def display_command_summary(folders: list, identity: Identity): if identity.dataset: click.echo(f" • Ignoring folder names. Using a single dataset with name|uuid {identity.dataset}.") else: - click.echo(f" • Using folder names for dataset names (one folder = one dataset).") + click.echo(" • Using folder names for dataset names (one folder = one dataset).") home_path = pathlib.Path.home() existing_folders = [section.get('path') for section in get_oort_config_upload_folder_sections()]