diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-01-27 22:49:34 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-01-27 22:49:34 -0500 |
commit | 415f1cb1c7dd5fbfe21cca0c6eea2eb998bbd1a0 (patch) | |
tree | f38d9d7496e712ef36c0856bf4c0ddcb17219c18 /examples/python_scripting.py | |
parent | 0f8f90cc2ade4135193f5399e5e6a12271668867 (diff) | |
download | cmd2-git-415f1cb1c7dd5fbfe21cca0c6eea2eb998bbd1a0.tar.gz |
Renamed locals_in_py to self_in_py
This more accurately reflects what it controls
Diffstat (limited to 'examples/python_scripting.py')
-rwxr-xr-x | examples/python_scripting.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/python_scripting.py b/examples/python_scripting.py index 8c680d33..fc23c562 100755 --- a/examples/python_scripting.py +++ b/examples/python_scripting.py @@ -29,7 +29,7 @@ class CmdLineApp(cmd2.Cmd): super().__init__(use_ipython=True) self._set_prompt() self.intro = 'Happy 𝛑 Day. Note the full Unicode support: 😇 💩' - self.locals_in_py = True + self.self_in_py = True def _set_prompt(self): """Set prompt so it displays the current working directory.""" |