diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-03-10 00:33:42 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-03-10 00:33:42 -0500 |
commit | 102b6c121ccaa645fff02be0928a7342746232b8 (patch) | |
tree | 6aa876504a240c9a37511066e2ade41f54fb2c80 /examples | |
parent | 39751265531389bc864d536f992baf80a2038211 (diff) | |
download | cmd2-git-102b6c121ccaa645fff02be0928a7342746232b8.tar.gz |
Fixed typo in example
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/help_categories.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/help_categories.py b/examples/help_categories.py index 50b2c17d..f638e0df 100755 --- a/examples/help_categories.py +++ b/examples/help_categories.py @@ -39,7 +39,7 @@ class HelpCategories(cmd2.Cmd): def do_deploy(self, _): """Deploy command""" - self.poutput('Which') + self.poutput('Deploy') def do_start(self, _): """Start command""" |