summaryrefslogtreecommitdiff
path: root/cmd2
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-07-17 20:29:39 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2019-07-17 20:29:39 -0400
commitd9728550f0996dc5900a48f5948c1950143e0801 (patch)
tree677108fc33446585f5e9618b6e9d4f8ce010cd56 /cmd2
parent2496f09bc9a0b373bba756f680b91d676db93f83 (diff)
downloadcmd2-git-d9728550f0996dc5900a48f5948c1950143e0801.tar.gz
Added unit tests for tab completing multiline commands
Diffstat (limited to 'cmd2')
-rw-r--r--cmd2/cmd2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py
index d63af879..1f07f2cb 100644
--- a/cmd2/cmd2.py
+++ b/cmd2/cmd2.py
@@ -1863,7 +1863,7 @@ class Cmd(cmd.Cmd):
try:
self._at_continuation_prompt = True
- # Save the command line up to this point
+ # Save the command line up to this point for tab completion
self._multiline_in_progress = line + '\n'
nextline = self._pseudo_raw_input(self.continuation_prompt)