diff options
author | emkael <emkael@tlen.pl> | 2020-12-09 14:41:47 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2020-12-09 14:41:47 +0100 |
commit | 66d95bb9795f058e67a842a9ba25f7dc3dc0fe47 (patch) | |
tree | 397e7a3ed8ca47c2f93c1befecb4ed3eaaf7023e | |
parent | 8c596775050466e415395b55d1d110f6a39e1282 (diff) |
Printable Unicode characters python2 compatibility
-rw-r--r-- | dealconvert/formats/html.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dealconvert/formats/html.py b/dealconvert/formats/html.py index c4325fd..4185c40 100644 --- a/dealconvert/formats/html.py +++ b/dealconvert/formats/html.py @@ -12,10 +12,10 @@ from .. import dto HTML_SUITS = OrderedDict([ - ('s', '\u2660'), - ('h', '\u2665'), - ('d', '\u2666'), - ('c', '\u2663') + ('s', u'\u2660'), + ('h', u'\u2665'), + ('d', u'\u2666'), + ('c', u'\u2663') ]) _page_template = ''' |