summaryrefslogtreecommitdiff
path: root/examples/example.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2020-02-04 23:01:30 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2020-02-04 23:01:30 -0500
commit40722f10ace3107dcb4709008239ac8233ada30f (patch)
tree676edd56ec5ba1287cd4f38b66f2733eea597ee9 /examples/example.py
parent61dfcf613966355d68c01f2aa06f0158b54c1f20 (diff)
downloadcmd2-git-40722f10ace3107dcb4709008239ac8233ada30f.tar.gz
Added cmd2.utils.Settable to the cmd2 namespace and updated examples and docs
Diffstat (limited to 'examples/example.py')
-rwxr-xr-xexamples/example.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/example.py b/examples/example.py
index b8f8202c..0272a6e5 100755
--- a/examples/example.py
+++ b/examples/example.py
@@ -32,7 +32,7 @@ class CmdLineApp(cmd2.Cmd):
# Make maxrepeats settable at runtime
self.maxrepeats = 3
- self.settable['maxrepeats'] = 'max repetitions for speak command'
+ self.add_settable(cmd2.Settable('maxrepeats', int, 'max repetitions for speak command'))
speak_parser = argparse.ArgumentParser()
speak_parser.add_argument('-p', '--piglatin', action='store_true', help='atinLay')