diff options
Diffstat (limited to 'examples/initialization.py')
-rwxr-xr-x | examples/initialization.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/initialization.py b/examples/initialization.py index 293d8075..54bef6d8 100755 --- a/examples/initialization.py +++ b/examples/initialization.py @@ -51,7 +51,7 @@ class BasicApp(cmd2.Cmd): # Make echo_fg settable at runtime self.add_settable( - cmd2.Settable('foreground_color', str, 'Foreground color to use with echo command', choices=fg.colors()) + cmd2.Settable('foreground_color', str, 'Foreground color to use with echo command', self, choices=fg.colors()) ) @cmd2.with_category(CUSTOM_CATEGORY) |