From: Guillaume Pellerin Date: Thu, 4 Feb 2016 16:55:57 +0000 (+0100) Subject: fix unicode X-Git-Tag: 1.1~74 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=103bde566508ee7a9ff891bd960dac2feb9e50e3;p=teleforma.git fix unicode --- 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'