diff options
Diffstat (limited to 'src')
| -rwxr-xr-x | src/op_mode/image_installer.py | 2 | ||||
| -rwxr-xr-x | src/op_mode/image_manager.py | 4 | 
2 files changed, 3 insertions, 3 deletions
| diff --git a/src/op_mode/image_installer.py b/src/op_mode/image_installer.py index aa4cf301b..380393a34 100755 --- a/src/op_mode/image_installer.py +++ b/src/op_mode/image_installer.py @@ -728,7 +728,7 @@ def parse_arguments() -> Namespace:                          required=True,                          help='action to perform with an image')      parser.add_argument( -        '--image_path', +        '--image-path',          help='a path (HTTP or local file) to an image that needs to be installed'      )      # parser.add_argument('--image_new_name', help='a new name for image') diff --git a/src/op_mode/image_manager.py b/src/op_mode/image_manager.py index e4b2f4833..dcbd290c9 100755 --- a/src/op_mode/image_manager.py +++ b/src/op_mode/image_manager.py @@ -172,10 +172,10 @@ def parse_arguments() -> Namespace:                          required=True,                          help='action to perform with an image')      parser.add_argument( -        '--image_name', +        '--image-name',          help=          'a name of an image to add, delete, install, rename, or set as default') -    parser.add_argument('--image_new_name', help='a new name for image') +    parser.add_argument('--image-new-name', help='a new name for image')      args: Namespace = parser.parse_args()      # Validate arguments      if args.action == 'rename' and (not args.image_name or | 
