From 1b4514712d2a62899787c33575600749d496e2b3 Mon Sep 17 00:00:00 2001 From: Rob van der Linde Date: Tue, 21 Nov 2023 15:41:31 +1300 Subject: [PATCH] netcmd: auth policy: fix missing 'by' in help string Signed-off-by: Rob van der Linde Reviewed-by: Douglas Bagnall Reviewed-by: Andrew Bartlett --- python/samba/netcmd/domain/auth/policy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/samba/netcmd/domain/auth/policy.py b/python/samba/netcmd/domain/auth/policy.py index 8acd54617d5..6ba39a70ace 100644 --- a/python/samba/netcmd/domain/auth/policy.py +++ b/python/samba/netcmd/domain/auth/policy.py @@ -133,11 +133,11 @@ class ComputerOptions(options.OptionGroup): type=str, dest="allowed_to_authenticate_to", action="callback", callback=self.set_option) self.add_option("--computer-allowed-to-authenticate-to-by-group", - help="Computer is allowed to authenticate to group.", + help="Computer is allowed to authenticate to by group.", type=str, dest="allowed_to_authenticate_to_by_group", action="callback", callback=self.set_option) self.add_option("--computer-allowed-to-authenticate-to-by-silo", - help="Computer is allowed to authenticate to silo.", + help="Computer is allowed to authenticate to by silo.", type=str, dest="allowed_to_authenticate_to_by_silo", action="callback", callback=self.set_option) -- 2.47.3