From cf03b4091fbb6b026da066a7545b4ceaa1d7630b Mon Sep 17 00:00:00 2001 From: lthievenaz-keeper Date: Thu, 30 Jul 2026 08:32:30 +0100 Subject: [PATCH] Change help dialog for enterprise-role --new-user Changed the help message for enterprise-role --new-user argument: > Before: `assign this role to new users. \'add\' only` > After: `set this role as default for nodes and subnodes` There is no limitation for using this arg with or without the --add flag --- keepercommander/commands/enterprise.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keepercommander/commands/enterprise.py b/keepercommander/commands/enterprise.py index 512c4fce1..a87c7425e 100644 --- a/keepercommander/commands/enterprise.py +++ b/keepercommander/commands/enterprise.py @@ -194,7 +194,7 @@ def register_command_info(aliases, command_info): enterprise_role_parser.add_argument('--copy', dest='copy', action='store_true', help='copy role with enforcements') enterprise_role_parser.add_argument('--clone', dest='clone', action='store_true', help='copy role with users and enforcements') #enterprise_role_parser.add_argument('--visible-below', dest='visible_below', action='store', choices=['on', 'off'], help='visible to all nodes. \'add\' only') -enterprise_role_parser.add_argument('--new-user', dest='new_user', action='store', choices=['on', 'off'], help='assign this role to new users. \'add\' only') +enterprise_role_parser.add_argument('--new-user', dest='new_user', action='store', choices=['on', 'off'], help='set as default for node and subnodes') enterprise_role_parser.add_argument('--delete', dest='delete', action='store_true', help='delete role') enterprise_role_parser.add_argument('--node', dest='node', action='store', help='node Name or ID') enterprise_role_parser.add_argument('--name', dest='name', action='store', help='role\'s new name')