Skip to content

Commit a00fd70

Browse files
committed
Replaced unicode escape sequence for horizontal ellipsis with actual character
1 parent 53e1ae6 commit a00fd70

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cmd2/constants.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
MULTILINE_TERMINATOR = ';'
1515

1616
LINE_FEED = '\n'
17-
HORIZONTAL_ELLIPSIS = '\N{HORIZONTAL ELLIPSIS}'
17+
18+
# One character ellipsis
19+
HORIZONTAL_ELLIPSIS = '…'
1820

1921
DEFAULT_SHORTCUTS = {'?': 'help', '!': 'shell', '@': 'run_script', '@@': '_relative_run_script'}
2022

0 commit comments

Comments
 (0)