diff --git a/novaclient/v1_1/shell.py b/novaclient/v1_1/shell.py index df1e2ac62..030a1fb9d 100644 --- a/novaclient/v1_1/shell.py +++ b/novaclient/v1_1/shell.py @@ -1013,13 +1013,12 @@ def do_image_delete(cs, args): dest='ip', metavar='', default=None, - help=_('Search with regular expression match by IP address (Admin only).')) + help=_('Search with regular expression match by IP address.')) @utils.arg('--ip6', dest='ip6', metavar='', default=None, - help=_('Search with regular expression match by IPv6 address ' - '(Admin only).')) + help=_('Search with regular expression match by IPv6 address.')) @utils.arg('--name', dest='name', metavar='', @@ -1029,8 +1028,7 @@ def do_image_delete(cs, args): dest='instance_name', metavar='', default=None, - help=_('Search with regular expression match by server name ' - '(Admin only).')) + help=_('Search with regular expression match by server name.')) @utils.arg('--instance_name', help=argparse.SUPPRESS) @utils.arg('--status', diff --git a/novaclient/v3/shell.py b/novaclient/v3/shell.py index 2b8ac5acf..f3710354c 100644 --- a/novaclient/v3/shell.py +++ b/novaclient/v3/shell.py @@ -865,12 +865,12 @@ def do_image_delete(cs, args): dest='ip', metavar='', default=None, - help='Search with regular expression match by IP address (Admin only).') + help='Search with regular expression match by IP address.') @utils.arg('--ip6', dest='ip6', metavar='', default=None, - help='Search with regular expression match by IPv6 address (Admin only).') + help='Search with regular expression match by IPv6 address.') @utils.arg('--name', dest='name', metavar='', @@ -880,7 +880,7 @@ def do_image_delete(cs, args): dest='instance_name', metavar='', default=None, - help='Search with regular expression match by server name (Admin only).') + help='Search with regular expression match by server name.') @utils.arg('--instance_name', help=argparse.SUPPRESS) @utils.arg('--status',