From a54a60cb99f02e2bad7061fcde1b92e7a0b591c5 Mon Sep 17 00:00:00 2001 From: Paul Rubel Date: Mon, 9 Jan 2017 12:48:24 -0500 Subject: [PATCH] replace elipses with three periods elipses was causing exceptions when trying to print the help message: UnicodeEncodeError: 'latin-1' codec can't encode character '\u2026' in position 345: ordinal not in range(256) Replaced them with three periods --- colout/colout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colout/colout.py b/colout/colout.py index a5744d9..31f7f63 100755 --- a/colout/colout.py +++ b/colout/colout.py @@ -776,7 +776,7 @@ def _args_parse(argv, usage=""): parser.add_argument("color", metavar="COLOR", type=str, nargs='?', default="red", - help="A number in [0…255], a color name, a colormap name, \ + help="A number in [0...255], a color name, a colormap name, \ a palette or a comma-separated list of those values." + pygments_warn) parser.add_argument("style", metavar="STYLE", type=str, nargs='?',