summaryrefslogtreecommitdiff
path: root/examples/basic.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2020-01-27 22:49:34 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2020-01-27 22:49:34 -0500
commit415f1cb1c7dd5fbfe21cca0c6eea2eb998bbd1a0 (patch)
treef38d9d7496e712ef36c0856bf4c0ddcb17219c18 /examples/basic.py
parent0f8f90cc2ade4135193f5399e5e6a12271668867 (diff)
downloadcmd2-git-415f1cb1c7dd5fbfe21cca0c6eea2eb998bbd1a0.tar.gz
Renamed locals_in_py to self_in_py
This more accurately reflects what it controls
Diffstat (limited to 'examples/basic.py')
-rwxr-xr-xexamples/basic.py2
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'