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
This commit is contained in:
parent
01d1ab6b20
commit
a54a60cb99
1 changed files with 1 additions and 1 deletions
|
|
@ -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='?',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue