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.
This commit is contained in:
Ana Krivokapic 2013-03-18 07:57:00 -04:00 committed by Martin Kosek
parent 8de6c3fa90
commit 5f6310ecc6

View File

@ -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)