diff options
Diffstat (limited to 'cmd2/constants.py')
-rw-r--r-- | cmd2/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/constants.py b/cmd2/constants.py index 6784264f..838650e5 100644 --- a/cmd2/constants.py +++ b/cmd2/constants.py @@ -6,7 +6,7 @@ import re # Used for command parsing, tab completion and word breaks. Do not change. QUOTES = ['"', "'"] -REDIRECTION_CHARS = ['|', '<', '>'] +REDIRECTION_CHARS = ['|', '>'] # Regular expression to match ANSI escape codes ANSI_ESCAPE_RE = re.compile(r'\x1b[^m]*m') |