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