diff options
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 ...' |