X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/42c42960c2dce4500f12dd14a68a10ed4f06abf5..f4780d18f68d0608ae164a84f6f530dd0e2d35d2:/contact/models.py diff --git a/contact/models.py b/contact/models.py index 6b33d29..f23fddf 100644 --- a/contact/models.py +++ b/contact/models.py @@ -2,6 +2,7 @@ import yaml from django.core.files.storage import FileSystemStorage from django.db import models +from django.utils.encoding import smart_unicode from django.utils.translation import ugettext_lazy as _ from jsonfield import JSONField from . import app_settings @@ -21,7 +22,7 @@ class Contact(models.Model): allow_unicode=True, default_flow_style=False) if for_html: - value = value.replace(" ", unichr(160)) + value = smart_unicode(value).replace(u" ", unichr(160)) return value class Meta: