summaryrefslogtreecommitdiff
path: root/examples/tab_autocompletion.py
diff options
context:
space:
mode:
authorEric Lin <anselor@gmail.com>2018-04-15 23:32:25 -0400
committerEric Lin <anselor@gmail.com>2018-04-15 23:32:25 -0400
commitc99b9a24b24e7d9b9f5b551504ade7cdba4bc18b (patch)
tree012815d2f7618724b07dacf51edc78d5d32bdb3a /examples/tab_autocompletion.py
parentbfc190e64481c161929d69e358c0dccb32d67c21 (diff)
downloadcmd2-git-c99b9a24b24e7d9b9f5b551504ade7cdba4bc18b.tar.gz
Matched changes in the python3 branch.
Diffstat (limited to 'examples/tab_autocompletion.py')
-rwxr-xr-xexamples/tab_autocompletion.py2
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