From 5f6310ecc6b5747fd9f8b35786ece5e3b26789d3 Mon Sep 17 00:00:00 2001 From: Ana Krivokapic Date: Mon, 18 Mar 2013 07:57:00 -0400 Subject: Fix internal error for ipa show-mappings The run() method of the show_mappings command was missing the **options parameter in its signature, causing the ipa show-mappings to fail with an internal error. --- ipalib/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipalib/cli.py') diff --git a/ipalib/cli.py b/ipalib/cli.py index e379f073..d5a5b842 100644 --- a/ipalib/cli.py +++ b/ipalib/cli.py @@ -850,7 +850,7 @@ class show_mappings(frontend.Command): ) has_output = tuple() - def run(self, command_name): + def run(self, command_name, **options): command_name = from_cli(command_name) if command_name not in self.Command: raise CommandError(name=command_name) -- cgit