From 006658c2f715bf3b1d9aafa7bf81e11244a85234 Mon Sep 17 00:00:00 2001 From: Ant Zucaro Date: Fri, 23 Dec 2011 20:40:41 -0500 Subject: [PATCH] Decode the font when going to HTML. --- xonstat/util.py | 1 + 1 file changed, 1 insertion(+) diff --git a/xonstat/util.py b/xonstat/util.py index e2d4e5e..08a1731 100755 --- a/xonstat/util.py +++ b/xonstat/util.py @@ -78,6 +78,7 @@ def strip_colors(qstr=''): def html_colors(qstr=''): + qstr = qfont_decode(qstr) def dec_repl(match): return _dec_spans[int(match.group(1))] qstr = qstr.replace('^^', '^') -- 2.39.2