From: Rowland Penny Date: Fri, 5 Jun 2020 06:56:21 +0000 (+0100) Subject: samba-tool dns query --help: Someone forgot 'PTR' from the list of record types X-Git-Tag: ldb-2.2.0~141 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eae301e1206dbe9c6b0d7da465c4c5c9bbfd6c11;p=thirdparty%2Fsamba.git samba-tool dns query --help: Someone forgot 'PTR' from the list of record types Signed-off-by: Rowland Penny Reviewed-by: Jeremy Allison Autobuild-User(master): Jeremy Allison Autobuild-Date(master): Thu Jun 11 04:37:37 UTC 2020 on sn-devel-184 --- diff --git a/python/samba/netcmd/dns.py b/python/samba/netcmd/dns.py index 6faa54d1a8e..d4b06929aa3 100644 --- a/python/samba/netcmd/dns.py +++ b/python/samba/netcmd/dns.py @@ -790,7 +790,8 @@ class cmd_zonedelete(Command): class cmd_query(Command): """Query a name.""" - synopsis = '%prog [options]' + synopsis = ('%prog ' + ' [options]') takes_args = ['server', 'zone', 'name', 'rtype']