From 7ee9968971795b5c45b67ea9ddb36db096d266a1 Mon Sep 17 00:00:00 2001 From: Dongsheng Yang Date: Thu, 18 Feb 2016 13:53:20 +0800 Subject: [PATCH] ceph-disk: make some arguments as required if necessary There is no default value for these arguments, and they are necessary. Then make them as required. Fixes 9666 Signed-off-by: Dongsheng Yang --- src/ceph-disk/ceph_disk/main.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ceph-disk/ceph_disk/main.py b/src/ceph-disk/ceph_disk/main.py index 94471674338..82ce89135fd 100755 --- a/src/ceph-disk/ceph_disk/main.py +++ b/src/ceph-disk/ceph_disk/main.py @@ -4284,7 +4284,7 @@ def make_activate_parser(subparsers): activate_parser.add_argument( 'path', metavar='PATH', - nargs='?', + nargs=1, help='path to block device or directory', ) activate_parser.add_argument( @@ -4417,7 +4417,7 @@ def make_suppress_parser(subparsers): suppress_parser.add_argument( 'path', metavar='PATH', - nargs='?', + nargs=1, help='path to block device or directory', ) suppress_parser.set_defaults( @@ -4430,7 +4430,7 @@ def make_suppress_parser(subparsers): unsuppress_parser.add_argument( 'path', metavar='PATH', - nargs='?', + nargs=1, help='path to block device or directory', ) unsuppress_parser.set_defaults( @@ -4452,7 +4452,7 @@ def make_deactivate_parser(subparsers): deactivate_parser.add_argument( 'path', metavar='PATH', - nargs='?', + nargs=1, help='path to block device or directory', ) deactivate_parser.add_argument( @@ -4483,7 +4483,7 @@ def make_destroy_parser(subparsers): destroy_parser.add_argument( 'path', metavar='PATH', - nargs='?', + nargs=1, help='path to block device or directory', ) destroy_parser.add_argument( -- 2.47.3