summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'}