From 103bde566508ee7a9ff891bd960dac2feb9e50e3 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 4 Feb 2016 17:55:57 +0100 Subject: [PATCH] fix unicode --- .../management/commands/teleforma-send-subscription-email.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teleforma/management/commands/teleforma-send-subscription-email.py b/teleforma/management/commands/teleforma-send-subscription-email.py index d122199a..403eceef 100644 --- a/teleforma/management/commands/teleforma-send-subscription-email.py +++ b/teleforma/management/commands/teleforma-send-subscription-email.py @@ -36,7 +36,7 @@ class Command(BaseCommand): if student.platform_only: mode = 'E-learning' else: - mode = 'Présentielle' + mode = 'Presentielle' ctx_dict = {'site': site, 'organization': settings.TELEMETA_ORGANIZATION, 'student': student, 'mode': mode} subject_template = 'teleforma/messages/email_inscr_sujet.txt' message_template = 'teleforma/messages/email_inscription.txt' -- 2.39.5