diff options
author | kotfu <kotfu@kotfu.net> | 2018-04-27 15:11:31 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2018-04-27 15:11:31 -0600 |
commit | 8c69e0e75454a5665ed2d428aba3c052b97b68b5 (patch) | |
tree | f9ff480366d9e6545a941f39a34ee0c5da6b240d | |
parent | 34aa287e3a27ec9fa4db5e243530cca9e08e4edd (diff) | |
download | cmd2-git-8c69e0e75454a5665ed2d428aba3c052b97b68b5.tar.gz |
Remove ‘<‘ from REDIRECTION_CHARS, it’s no longer used.
-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') |