From c99b9a24b24e7d9b9f5b551504ade7cdba4bc18b Mon Sep 17 00:00:00 2001 From: Eric Lin Date: Sun, 15 Apr 2018 23:32:25 -0400 Subject: Matched changes in the python3 branch. --- examples/tab_autocompletion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/tab_autocompletion.py') diff --git a/examples/tab_autocompletion.py b/examples/tab_autocompletion.py index 7b978fed..fab4ce01 100755 --- a/examples/tab_autocompletion.py +++ b/examples/tab_autocompletion.py @@ -17,7 +17,7 @@ class TabCompleteExample(cmd2.Cmd): """ Example cmd2 application where we a base command which has a couple subcommands.""" def __init__(self): - cmd2.Cmd.__init__(self) + super().__init__() # This demonstrates a number of customizations of the AutoCompleter version of ArgumentParser # - The help output will separately group required vs optional flags -- cgit v1.2.1