mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 00:41:25 -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()
|
||||
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user