mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 22:00:22 -07:00
Fix call of wrong super class
Added a basic test
This commit is contained in:
parent
04b86df815
commit
5ece97ae5b
2 changed files with 33 additions and 1 deletions
|
@ -95,7 +95,7 @@ class ConsoleCLI(CLI, cmd.Cmd):
|
|||
|
||||
self.parser.set_defaults(cwd='*')
|
||||
|
||||
super(AdHocCLI, self).parse()
|
||||
super(ConsoleCLI, self).parse()
|
||||
|
||||
display.verbosity = self.options.verbosity
|
||||
self.validate_conflicts(runas_opts=True, vault_opts=True, fork_opts=True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue