We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d80d672 + 5b42dc9 commit 6ddb684Copy full SHA for 6ddb684
cmd2/parsing.py
@@ -163,7 +163,7 @@ def __init__(
163
invalid_command_chars = []
164
invalid_command_chars.extend(constants.QUOTES)
165
invalid_command_chars.extend(constants.REDIRECTION_CHARS)
166
- invalid_command_chars.extend(terminators)
+ invalid_command_chars.extend(self.terminators)
167
# escape each item so it will for sure get treated as a literal
168
second_group_items = [re.escape(x) for x in invalid_command_chars]
169
# add the whitespace and end of string, not escaped because they
0 commit comments