diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-03-17 14:42:01 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-03-17 14:42:01 -0400 |
commit | b0480b3b702954663bc7c80ef497c72af45ade64 (patch) | |
tree | 0178c84146c9043c51bfc28751babfa5e7b22a31 | |
parent | adbcec5c9ee34bd2cd683c2574e94594de1f3267 (diff) | |
download | cmd2-git-b0480b3b702954663bc7c80ef497c72af45ade64.tar.gz |
Forgot a flag check
-rwxr-xr-x | cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2377,7 +2377,7 @@ Usage: Usage: unalias [-a] name [name ...] if command_completions: # Only add a space if there is one completion not in quotes and the end of the line - if len(command_completions) == 1 and endidx == len(line): + if len(command_completions) == 1 and not in_quotes and endidx == len(line): command_completions[0] += ' ' return command_completions |