diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-01-28 15:12:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-28 15:12:49 -0500 |
commit | 5a88fcf4a54c834edf70bf75020763a23d49f146 (patch) | |
tree | fd271ddc070c2f7df9563d3a81d6d9bd8a188688 /examples/cmd_as_argument.py | |
parent | 95f8d883496044bcb95ce803752a8851de6ad0e5 (diff) | |
parent | 691d7759dab0c8a0e11b5c64bfb84c25fcfc7515 (diff) | |
download | cmd2-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-x | examples/cmd_as_argument.py | 2 |
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' |