From: Rob van der Linde Date: Tue, 21 Nov 2023 02:41:31 +0000 (+1300) Subject: netcmd: auth policy: fix missing 'by' in help string X-Git-Tag: talloc-2.4.2~565 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1b4514712d2a62899787c33575600749d496e2b3;p=thirdparty%2Fsamba.git netcmd: auth policy: fix missing 'by' in help string Signed-off-by: Rob van der Linde Reviewed-by: Douglas Bagnall Reviewed-by: Andrew Bartlett --- 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)