]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
samba-tool/ntacl: don't announce -q,--quiet in --help as it's not used at all
authorStefan Metzmacher <metze@samba.org>
Tue, 2 May 2023 14:18:26 +0000 (16:18 +0200)
committerAndrew Bartlett <abartlet@samba.org>
Wed, 21 Jun 2023 23:24:37 +0000 (23:24 +0000)
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
python/samba/netcmd/ntacl.py

index 26f82c80e8db73491147ef97413e82c1e6725498..7ed3d6ed0dde5f21b324167246ab6f4006ecd6b0 100644 (file)
@@ -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"),