summaryrefslogtreecommitdiff
path: root/examples/paged_output.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/paged_output.py')
-rwxr-xr-xexamples/paged_output.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/paged_output.py b/examples/paged_output.py
index cb213087..bb410af6 100755
--- a/examples/paged_output.py
+++ b/examples/paged_output.py
@@ -11,7 +11,7 @@ class PagedOutput(cmd2.Cmd):
""" Example cmd2 application where we create commands that just print the arguments they are called with."""
def __init__(self):
- cmd2.Cmd.__init__(self)
+ super().__init__()
@with_argument_list
def do_page_file(self, args):