summaryrefslogtreecommitdiff
path: root/examples/subcommands.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-03-02 16:58:01 -0500
committerGitHub <noreply@github.com>2018-03-02 16:58:01 -0500
commit17781f27c49b961526c7e3a5302482744e6a038b (patch)
treecad46f7f9746ecd63c7ee5eb6e4d8eabbb44ba0e /examples/subcommands.py
parent9aeb231a201e070c4897394ff79d96f21753d9b8 (diff)
parent0ec3c1d40962563cc5f5863e0d824343f43da13d (diff)
downloadcmd2-git-17781f27c49b961526c7e3a5302482744e6a038b.tar.gz
Merge pull request #291 from python-cmd2/tab_completion
Tab completion
Diffstat (limited to 'examples/subcommands.py')
-rwxr-xr-xexamples/subcommands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/subcommands.py b/examples/subcommands.py
index e77abc61..a278fd8b 100755
--- a/examples/subcommands.py
+++ b/examples/subcommands.py
@@ -24,7 +24,7 @@ class SubcommandsExample(cmd2.Cmd):
self.poutput(args.x * args.y)
def base_bar(self, args):
- """bar sucommand of base command"""
+ """bar subcommand of base command"""
self.poutput('((%s))' % args.z)
# create the top-level parser for the base command