summaryrefslogtreecommitdiff
path: root/cmd2
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2020-02-11 22:05:18 -0500
committerKevin Van Brunt <kmvanbrunt@gmail.com>2020-02-11 22:05:18 -0500
commita00fd703819920a5afe3b41951be5b3250ecd2a8 (patch)
treeb70651e59a58c38d6999a98de9a86ded4625ea1b /cmd2
parent53e1ae69696962f544d38490a88ab2de9faa217b (diff)
downloadcmd2-git-a00fd703819920a5afe3b41951be5b3250ecd2a8.tar.gz
Replaced unicode escape sequence for horizontal ellipsis with actual character
Diffstat (limited to 'cmd2')
-rw-r--r--cmd2/constants.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd2/constants.py b/cmd2/constants.py
index 04042d4d..bc72817f 100644
--- a/cmd2/constants.py
+++ b/cmd2/constants.py
@@ -14,7 +14,9 @@ COMMENT_CHAR = '#'
MULTILINE_TERMINATOR = ';'
LINE_FEED = '\n'
-HORIZONTAL_ELLIPSIS = '\N{HORIZONTAL ELLIPSIS}'
+
+# One character ellipsis
+HORIZONTAL_ELLIPSIS = '…'
DEFAULT_SHORTCUTS = {'?': 'help', '!': 'shell', '@': 'run_script', '@@': '_relative_run_script'}