diff --git a/app/api/handlers/v1.py b/app/api/handlers/v1.py index 7c3ae56..7123ea7 100644 --- a/app/api/handlers/v1.py +++ b/app/api/handlers/v1.py @@ -186,7 +186,7 @@ class OpTimerHandler(BaseHandler): 'eventTitle': node.getAttribute('eventTitle'), 'duration': duration, 'isImportant': int(node.getAttribute('importance')), - 'eventText': ''.join(BeautifulSoup(node.getAttribute('eventText')).findAll(text=True)), + 'eventText': ' '.join(BeautifulSoup(node.getAttribute('eventText')).findAll(text=True)), 'endsIn':endsIn, 'forumLink': forumlink} events.append(event)