From 4e1b23994ee310c40da786faedf49c8fa4b44d31 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 8 Oct 2014 16:47:46 +0400 Subject: [PATCH] Fix a bug -- encode html to utf-8 --- phd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phd.py b/phd.py index 52f6937..7d9cf13 100644 --- a/phd.py +++ b/phd.py @@ -39,7 +39,7 @@ class phd(Template): def body(self): if hasattr(self, "body_html"): - return self.body_html() + return self.body_html().encode('utf-8') if hasattr(self, "body_text"): return self.text2html() if hasattr(self, "body_rst"): -- 2.39.2