]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
netcmd: auth policy: fix missing 'by' in help string
authorRob van der Linde <rob@catalyst.net.nz>
Tue, 21 Nov 2023 02:41:31 +0000 (15:41 +1300)
committerDouglas Bagnall <dbagnall@samba.org>
Wed, 22 Nov 2023 23:35:33 +0000 (23:35 +0000)
Signed-off-by: Rob van der Linde <rob@catalyst.net.nz>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
python/samba/netcmd/domain/auth/policy.py

index 8acd54617d51e28c9f9f9478c8a57c90422edabb..6ba39a70ace028792da4151a55ec2a7bbd46c56d 100644 (file)
@@ -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)