Make zone required for list. Fixes #6
This commit is contained in:
parent
6c59202263
commit
d88ad607c9
1 changed files with 1 additions and 1 deletions
|
@ -271,7 +271,7 @@ def main() -> int:
|
||||||
listcmd.add_argument("-d", "--data")
|
listcmd.add_argument("-d", "--data")
|
||||||
listcmd.add_argument("-n", "--name")
|
listcmd.add_argument("-n", "--name")
|
||||||
listcmd.add_argument("-r", "--rtype")
|
listcmd.add_argument("-r", "--rtype")
|
||||||
listcmd.add_argument("-z", "--zone")
|
listcmd.add_argument("-z", "--zone", required=True)
|
||||||
|
|
||||||
updatecmd = subparsers.add_parser("update")
|
updatecmd = subparsers.add_parser("update")
|
||||||
updatecmd.add_argument(
|
updatecmd.add_argument(
|
||||||
|
|
Loading…
Add table
Reference in a new issue