From: Stefan Metzmacher Date: Tue, 2 May 2023 14:18:26 +0000 (+0200) Subject: samba-tool/ntacl: don't announce -q,--quiet in --help as it's not used at all X-Git-Tag: talloc-2.4.1~291 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6327fd9cdbaf3dad4b09ce291de1f42259e11d2b;p=thirdparty%2Fsamba.git samba-tool/ntacl: don't announce -q,--quiet in --help as it's not used at all Signed-off-by: Stefan Metzmacher Reviewed-by: Andrew Bartlett --- diff --git a/python/samba/netcmd/ntacl.py b/python/samba/netcmd/ntacl.py index 26f82c80e8d..7ed3d6ed0dd 100644 --- a/python/samba/netcmd/ntacl.py +++ b/python/samba/netcmd/ntacl.py @@ -79,7 +79,8 @@ class cmd_ntacl_set(Command): } takes_options = [ - Option("-q", "--quiet", help="Be quiet", action="store_true"), + # --quiet is not used at all... + Option("-q", "--quiet", help=Option.SUPPRESS_HELP, action="store_true"), Option("--xattr-backend", type="choice", help="xattr backend type (native fs or tdb)", choices=["native", "tdb"]), Option("--eadb-file", help="Name of the tdb file where attributes are stored", type="string"),