You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Event title error when containing special characters like "é" : 'ascii' codec can't encode character u'\xe9' in position 1: ordinal not in range(128)
#20
I encountered this issue when creating an event whose title is "Début stage".
The line in cause is the 206th from the file /site-packages/swingtime/models.py when the occurrence is outputted as string.
I encountered this issue when creating an event whose title is "Début stage".
The line in cause is the 206th from the file /site-packages/swingtime/models.py when the occurrence is outputted as string.
/site-packages/swingtime/models.py
204 #---------------------------------------------------------------------------
205 def str(self):
206 return '{}: {}'.format(self.title, self.start_time.isoformat())
The text was updated successfully, but these errors were encountered: