diff options
author | Eric Lin <anselor@gmail.com> | 2018-04-15 23:32:25 -0400 |
---|---|---|
committer | Eric Lin <anselor@gmail.com> | 2018-04-15 23:32:25 -0400 |
commit | c99b9a24b24e7d9b9f5b551504ade7cdba4bc18b (patch) | |
tree | 012815d2f7618724b07dacf51edc78d5d32bdb3a /examples | |
parent | bfc190e64481c161929d69e358c0dccb32d67c21 (diff) | |
download | cmd2-git-c99b9a24b24e7d9b9f5b551504ade7cdba4bc18b.tar.gz |
Matched changes in the python3 branch.
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/tab_autocompletion.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |