From 4f76e547fbd3819e0628cc637b4246fa0250c01d Mon Sep 17 00:00:00 2001 From: Sami Shahin Date: Wed, 13 Mar 2019 12:50:13 -0400 Subject: [PATCH] [cli] Fix: Use dashes in ui validate flag - Change validation flag to use dashes instead of underscores This follows the conventions set by other CLI tools --- operatorcourier/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operatorcourier/cli.py b/operatorcourier/cli.py index 0aa0a13..ea392bb 100644 --- a/operatorcourier/cli.py +++ b/operatorcourier/cli.py @@ -59,7 +59,7 @@ def verify(self): parser.add_argument('source_dir', help='Path of your directory of yaml ' 'files to bundle. Either set this or ' 'use the files argument for bundle data.') - parser.add_argument('--ui_validate_io', + parser.add_argument('--ui-validate-io', help='Validate bundle for operatorhub.io UI', action='store_true') parser.add_argument('--validation-output', dest='validation_output',