diff options
author | Eric Lin <anselor@gmail.com> | 2021-03-16 12:25:34 -0400 |
---|---|---|
committer | anselor <anselor@gmail.com> | 2021-03-18 18:26:20 -0400 |
commit | 8f981f37eddcccc919329245b85fd44d5975a6a7 (patch) | |
tree | 9a822b245312b3b515b64a69d772fab75fce8121 /examples/example.py | |
parent | 9d1b7c7f1068ce9b55ba160ebceeadd665d1bc02 (diff) | |
download | cmd2-git-8f981f37eddcccc919329245b85fd44d5975a6a7.tar.gz |
Resolves comments from PR
Diffstat (limited to 'examples/example.py')
-rwxr-xr-x | examples/example.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/example.py b/examples/example.py index ffa8d3bf..a3d4e90b 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.add_settable(cmd2.Settable('maxrepeats', int, 'max repetitions for speak command')) + self.add_settable(cmd2.Settable('maxrepeats', int, 'max repetitions for speak command', self)) speak_parser = argparse.ArgumentParser() speak_parser.add_argument('-p', '--piglatin', action='store_true', help='atinLay') |