summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2017-07-19 14:58:25 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2017-07-19 14:58:25 -0400
commit898fc8979cf4aac29482e3af758e997b7e921655 (patch)
treeb4b4476778430b45bf1f4dc6241681031ed21623
parent30a50a2b8c27de257a3ebbe773abddb9af92792e (diff)
downloadcmd2-git-898fc8979cf4aac29482e3af758e997b7e921655.tar.gz
Corrected help text for shortcuts since they don't have to be single key
-rwxr-xr-xcmd2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2.py b/cmd2.py
index 4b4bc458..3e66cde0 100755
--- a/cmd2.py
+++ b/cmd2.py
@@ -1028,7 +1028,7 @@ class Cmd(cmd.Cmd):
def do_shortcuts(self, args):
"""Lists shortcuts (aliases) available."""
result = "\n".join('%s: %s' % (sc[0], sc[1]) for sc in sorted(self.shortcuts))
- self.stdout.write("Single-key shortcuts for other commands:\n{}\n".format(result))
+ self.stdout.write("Shortcuts for other commands:\n{}\n".format(result))
# noinspection PyUnusedLocal
def do_eof(self, arg):