Skip to content

Commit

Permalink
closing debian bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
garabik committed Apr 9, 2018
1 parent 66e5478 commit e31f448
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
unicode (2.6) unstable; urgency=low

* fix crash when using Uxxxx (as opposed to U+xxxx) (closes: #836594)
* python3 by default
* improve message when there are too many characters
to display (closes: #868490)
* python3 by default (closes: #874672)

-- Radovan Garabík <garabik@kassiopeia.juls.savba.sk> Mon, 09 Apr 2018 16:41:29 +0200

Expand Down
2 changes: 1 addition & 1 deletion unicode
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ def print_characters(clist, maxcount, format_string, query_wikipedia=0, query_wi
if maxcount:
counter += 1
if counter > options.maxcount:
out("\nToo many characters to display, more than %s, use --max option to change it\n" % options.maxcount)
out("\nToo many characters to display, more than %s, use --max 0 (or other value) option to change it\n" % options.maxcount)
return
for colour_key in colours.keys():
locals()[colour_key] = maybe_colours(colour_key)
Expand Down

0 comments on commit e31f448

Please sign in to comment.