diff --git a/pretalx_lower_thirds/views.py b/pretalx_lower_thirds/views.py index e410cc9..168a30d 100644 --- a/pretalx_lower_thirds/views.py +++ b/pretalx_lower_thirds/views.py @@ -42,7 +42,7 @@ class LowerThirdsOrgaView(PermissionRequired, FormView): class EventInfoView(TemplateView): def get(self, request, *args, **kwargs): - color = (self.request.event.primary_color or "#3aa57c") + color = self.request.event.primary_color or "#3aa57c" return JsonResponse( { "slug": self.request.event.slug,