Workaround for a weird Unicode problem.
authorRadek Czajka <rczajka@rczajka.pl>
Thu, 26 Sep 2019 00:06:49 +0000 (02:06 +0200)
committerRadek Czajka <rczajka@rczajka.pl>
Thu, 26 Sep 2019 00:08:53 +0000 (02:08 +0200)
chunks/templatetags/chunks.py

index 8b306ec..111c34e 100644 (file)
@@ -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