From a7d2c58f1476916c7781866ea55abeba9a12a18a Mon Sep 17 00:00:00 2001 From: Jan Szejko Date: Wed, 27 Sep 2017 11:40:14 +0200 Subject: [PATCH] fix contact admin? --- contact/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/contact/models.py b/contact/models.py index 5f031c2..e7a2c4a 100644 --- a/contact/models.py +++ b/contact/models.py @@ -19,6 +19,7 @@ class Contact(models.Model): import yaml value = yaml.safe_dump(value, allow_unicode=True, default_flow_style=False) if for_html: + from django.utils.encoding import smart_unicode value = smart_unicode(value).replace(u" ", unichr(160)) return value -- 2.20.1