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/basic.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/basic.py')
-rwxr-xr-x | examples/basic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/basic.py b/examples/basic.py index 75672a6b..37db6501 100755 --- a/examples/basic.py +++ b/examples/basic.py @@ -22,7 +22,7 @@ class BasicApp(cmd2.Cmd): self.intro = style('Welcome to PyOhio 2019 and cmd2!', fg='red', bg='white', bold=True) + ' 😀' # Allow access to your application in py and ipy via self - self.locals_in_py = True + self.self_in_py = True # Set the default category name self.default_category = 'cmd2 Built-in Commands' |