Aggiornare 'dominioctl.py'

Fix missing ctx parameter
This commit is contained in:
Enrico Lumetti 2022-03-31 17:57:15 +02:00
parent 71833e1b88
commit 9ee668d11d
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class ListDnsRecords(Command):
def run(self, ctx, args):
if len(args) < 1:
print("Missing domain name argument")
self.print_help()
self.print_help(ctx)
return
domain = args[0]