summaryrefslogtreecommitdiff
path: root/examples/cmd_as_argument.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2020-01-28 15:12:49 -0500
committerGitHub <noreply@github.com>2020-01-28 15:12:49 -0500
commit5a88fcf4a54c834edf70bf75020763a23d49f146 (patch)
treefd271ddc070c2f7df9563d3a81d6d9bd8a188688 /examples/cmd_as_argument.py
parent95f8d883496044bcb95ce803752a8851de6ad0e5 (diff)
parent691d7759dab0c8a0e11b5c64bfb84c25fcfc7515 (diff)
downloadcmd2-git-5a88fcf4a54c834edf70bf75020763a23d49f146.tar.gz
Merge pull request #864 from python-cmd2/reduce_settable_attributes
Reduce settable attributes and renamed locals_in_py
Diffstat (limited to 'examples/cmd_as_argument.py')
-rwxr-xr-xexamples/cmd_as_argument.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/cmd_as_argument.py b/examples/cmd_as_argument.py
index 49a50670..08643a50 100755
--- a/examples/cmd_as_argument.py
+++ b/examples/cmd_as_argument.py
@@ -33,7 +33,7 @@ class CmdLineApp(cmd2.Cmd):
# Set use_ipython to True to enable the "ipy" command which embeds and interactive IPython shell
super().__init__(allow_cli_args=False, use_ipython=True, multiline_commands=['orate'], shortcuts=shortcuts)
- self.locals_in_py = True
+ self.self_in_py = True
self.maxrepeats = 3
# Make maxrepeats settable at runtime
self.settable['maxrepeats'] = 'max repetitions for speak command'