From 0a439b0a7f5ed017079dd1f9bde0652ca0c6f4e0 Mon Sep 17 00:00:00 2001 From: Enrico Lumetti Date: Thu, 31 Mar 2022 17:59:52 +0200 Subject: [PATCH] Aggiornare 'dominioctl.py' Fix missing ctx parameter --- dominioctl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dominioctl.py b/dominioctl.py index a1ecb18..2c916b1 100755 --- a/dominioctl.py +++ b/dominioctl.py @@ -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: