1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-07-03 17:18:54 +00:00

Fix call of wrong super class

Added a basic test
This commit is contained in:
Thilo Uttendorfer 2016-10-16 23:40:58 +02:00 committed by Brian Coca
parent 04b86df815
commit 5ece97ae5b
2 changed files with 33 additions and 1 deletions

View file

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