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 /tests/test_transcript.py | |
| parent | 9d1b7c7f1068ce9b55ba160ebceeadd665d1bc02 (diff) | |
| download | cmd2-git-8f981f37eddcccc919329245b85fd44d5975a6a7.tar.gz | |
Resolves comments from PR
Diffstat (limited to 'tests/test_transcript.py')
| -rw-r--r-- | tests/test_transcript.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_transcript.py b/tests/test_transcript.py index 48c6a792..ccb28740 100644 --- a/tests/test_transcript.py +++ b/tests/test_transcript.py @@ -42,7 +42,7 @@ class CmdLineApp(cmd2.Cmd): super().__init__(*args, multiline_commands=['orate'], **kwargs) # Make maxrepeats settable at runtime - self.add_settable(Settable('maxrepeats', int, 'Max number of `--repeat`s allowed')) + self.add_settable(Settable('maxrepeats', int, 'Max number of `--repeat`s allowed', self)) self.intro = 'This is an intro banner ...' |
