diff --git a/reana_client/cli/files.py b/reana_client/cli/files.py index 059358c3..bfddfa14 100644 --- a/reana_client/cli/files.py +++ b/reana_client/cli/files.py @@ -40,7 +40,7 @@ def files(ctx): '--workflow', default=os.environ.get('REANA_WORKON', None), help='Name or UUID of the workflow whose files should be listed. ' - 'Overrides value of REANA_WORKON.') + 'Overrides value of REANA_WORKON environment variable.') @click.option( '--filter', '_filter', @@ -124,7 +124,7 @@ def get_files(ctx, workflow, _filter, '--workflow', default=os.environ.get('REANA_WORKON', None), help='Name or UUID of that workflow where files should downloaded from. ' - 'Overrides value of REANA_WORKON.') + 'Overrides value of REANA_WORKON environment variable.') @click.option( '-o', '--output-directory', @@ -210,7 +210,7 @@ def download_files(ctx, workflow, filenames, output_directory, access_token): '--workflow', default=os.environ.get('REANA_WORKON', None), help='Name or UUID of the workflow you are uploading files for. ' - 'Overrides value of $REANA_WORKON.') + 'Overrides value of REANA_WORKON environment variable.') @add_access_token_options @click.pass_context @with_api_client @@ -310,7 +310,7 @@ def upload_files(ctx, workflow, filenames, access_token): '--workflow', default=os.environ.get('REANA_WORKON', None), help='Name or UUID of the workflow you are deleting files for. ' - 'Overrides value of $REANA_WORKON.') + 'Overrides value of REANA_WORKON environment variable.') @add_access_token_options @click.pass_context @with_api_client diff --git a/reana_client/cli/workflow.py b/reana_client/cli/workflow.py index 2bc0db34..28e2efce 100644 --- a/reana_client/cli/workflow.py +++ b/reana_client/cli/workflow.py @@ -221,7 +221,7 @@ def workflow_create(ctx, file, name, skip_validation, access_token): default=os.environ.get('REANA_WORKON', None), callback=workflow_uuid_or_name, help='Name or UUID of the workflow to be started. ' - 'Overrides value of REANA_WORKON.') + 'Overrides value of REANA_WORKON environment variable.') @add_access_token_options @click.option( '-p', '--parameter', 'parameters', @@ -314,7 +314,7 @@ def workflow_start(ctx, workflow, access_token, default=os.environ.get('REANA_WORKON', None), callback=workflow_uuid_or_name, help='Name or UUID of the workflow whose status should be resolved. ' - 'Overrides value of REANA_WORKON.') + 'Overrides value of REANA_WORKON environment variable.') @click.option( '--filter', '_filter', @@ -451,7 +451,7 @@ def add_verbose_data_from_response(response, verbose_headers, default=os.environ.get('REANA_WORKON', None), callback=workflow_uuid_or_name, help='Name or UUID of the workflow whose logs should be fetched. ' - 'Overrides value of REANA_WORKON.') + 'Overrides value of REANA_WORKON environment variable.') @add_access_token_options @click.pass_context @with_api_client @@ -528,7 +528,7 @@ def workflow_validate(ctx, file): default=os.environ.get('REANA_WORKON', None), callback=workflow_uuid_or_name, help='Name and run number to be stopped. ' - 'Overrides value of REANA_WORKON.') + 'Overrides value of REANA_WORKON environment variable.') @add_access_token_options @click.pass_context @with_api_client @@ -660,7 +660,7 @@ def workflow_run(ctx, file, filenames, name, skip_validation, default=os.environ.get('REANA_WORKON', None), callback=workflow_uuid_or_name, help='Name and run number to be deleted. ' - 'Overrides value of REANA_WORKON.') + 'Overrides value of REANA_WORKON environment variable.') @add_access_token_options @click.pass_context @with_api_client