mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-13 09:41:55 -06:00
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:
parent
8de6c3fa90
commit
5f6310ecc6
@ -850,7 +850,7 @@ class show_mappings(frontend.Command):
|
|||||||
)
|
)
|
||||||
has_output = tuple()
|
has_output = tuple()
|
||||||
|
|
||||||
def run(self, command_name):
|
def run(self, command_name, **options):
|
||||||
command_name = from_cli(command_name)
|
command_name = from_cli(command_name)
|
||||||
if command_name not in self.Command:
|
if command_name not in self.Command:
|
||||||
raise CommandError(name=command_name)
|
raise CommandError(name=command_name)
|
||||||
|
Loading…
Reference in New Issue
Block a user