Skip to content

Commit

Permalink
Decode letters from argv as UTF-8 in tools/font-generator.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Grumbel committed Aug 17, 2014
1 parent 39b21a2 commit 5735da0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/font-generator.py
Expand Up @@ -138,7 +138,7 @@ def draw_glyphs(self, cr, cols, rows):
generator.font_family = args.font

if args.letters is not None:
generator.letters = args.letters
generator.letters = args.letters.decode('utf8')

if args.columns is not None:
generator.columns = args.columns
Expand Down

0 comments on commit 5735da0

Please sign in to comment.