summaryrefslogtreecommitdiff
path: root/examples/dynamic_commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/dynamic_commands.py')
-rwxr-xr-xexamples/dynamic_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/dynamic_commands.py b/examples/dynamic_commands.py
index aca370ec..eee5b8cc 100755
--- a/examples/dynamic_commands.py
+++ b/examples/dynamic_commands.py
@@ -33,7 +33,7 @@ class CommandsInLoop(cmd2.Cmd):
help_func_name = HELP_FUNC_PREFIX + command
setattr(self, help_func_name, help_func)
- super().__init__(use_ipython=True)
+ super().__init__(include_ipy=True)
def send_text(self, args: cmd2.Statement, *, text: str):
"""Simulate sending text to a server and printing the response."""