From bfbac63db9949e9d5606860636b2937e029bcf9c Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Wed, 5 Feb 2025 11:17:52 +0100 Subject: [PATCH] fix title encoding --- teleforma/webclass/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teleforma/webclass/models.py b/teleforma/webclass/models.py index 77e26800..42569310 100644 --- a/teleforma/webclass/models.py +++ b/teleforma/webclass/models.py @@ -295,7 +295,7 @@ class WebclassSlot(models.Model): 'moderatorPW': self.room_password, 'attendeePW': "PWATTENDEE", # 'maxParticipants':self.webclass_max_participants + 1, - 'welcome': "Pré-Barreau CRFPA %d - Bienvenue sur la webclass \"%s\"." % (year, self.webclass.course.title.encode('UTF-8'),), + 'welcome': "Pré-Barreau CRFPA %d - Bienvenue sur la webclass \"%s\"." % (year, self.webclass.course.title,), 'record': True, # 'autoStartRecording': False, 'allowStartStopRecording': True, -- 2.39.5