From: Radek Czajka Date: Thu, 26 Sep 2019 00:06:49 +0000 (+0200) Subject: Workaround for a weird Unicode problem. X-Git-Url: https://git.mdrn.pl/prawokultury.git/commitdiff_plain/100750e35bb85b86566d87692c301e841d758ece Workaround for a weird Unicode problem. --- diff --git a/chunks/templatetags/chunks.py b/chunks/templatetags/chunks.py index 8b306ec..111c34e 100644 --- a/chunks/templatetags/chunks.py +++ b/chunks/templatetags/chunks.py @@ -21,7 +21,7 @@ def chunk(key, cache_time=0): n = Chunk(key=key) n.save() return '' - return mark_safe(content) + return mark_safe(unicode(content)) @register.simple_tag