summaryrefslogtreecommitdiff
path: root/cmd2/constants.py
diff options
context:
space:
mode:
authorkotfu <kotfu@kotfu.net>2018-07-07 20:42:45 -0600
committerkotfu <kotfu@kotfu.net>2018-07-07 20:42:45 -0600
commita2f3ef3e689ef96fc31e1fc77613c2013b048c85 (patch)
tree54ce6528bfce16579b0f9dc33bc98b672b042334 /cmd2/constants.py
parent9a6a2b2c25c19e82c661c7ca602f528312e89a62 (diff)
downloadcmd2-git-a2f3ef3e689ef96fc31e1fc77613c2013b048c85.tar.gz
Move LINE_FEED into constants
Diffstat (limited to 'cmd2/constants.py')
-rw-r--r--cmd2/constants.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd2/constants.py b/cmd2/constants.py
index b829000f..d3e8a125 100644
--- a/cmd2/constants.py
+++ b/cmd2/constants.py
@@ -15,3 +15,5 @@ REDIRECTION_TOKENS = [REDIRECTION_PIPE, REDIRECTION_OUTPUT, REDIRECTION_APPEND]
# Regular expression to match ANSI escape codes
ANSI_ESCAPE_RE = re.compile(r'\x1b[^m]*m')
+
+LINE_FEED = '\n'