Aggiornare 'dominioctl.py'

Fix missing ctx parameter
This commit is contained in:
Enrico Lumetti 2022-03-31 17:59:52 +02:00
parent 9ee668d11d
commit 0a439b0a7f
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ class Help(Command):
if len(args) > 0:
command_name = args[0]
if command_name in ctx['commands']:
ctx['commands'][command_name].print_help()
ctx['commands'][command_name].print_help(ctx)
else:
print("Unknown command.")
else: