summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2020-12-09 14:41:47 +0100
committeremkael <emkael@tlen.pl>2020-12-09 14:41:47 +0100
commit66d95bb9795f058e67a842a9ba25f7dc3dc0fe47 (patch)
tree397e7a3ed8ca47c2f93c1befecb4ed3eaaf7023e
parent8c596775050466e415395b55d1d110f6a39e1282 (diff)
Printable Unicode characters python2 compatibility
-rw-r--r--dealconvert/formats/html.py8
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 = '''