From cfda6e019c4466b44b4e98dba8a9f598011219ff Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Fri, 6 Jul 2018 02:55:18 +0200 Subject: [PATCH] Don't wrap events in a Response object twice --- platypush/plugins/google/calendar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platypush/plugins/google/calendar.py b/platypush/plugins/google/calendar.py index 50a6da992..cc103c9d4 100644 --- a/platypush/plugins/google/calendar.py +++ b/platypush/plugins/google/calendar.py @@ -39,7 +39,7 @@ class GoogleCalendarPlugin(GooglePlugin, CalendarInterface): orderBy='startTime').execute() events = result.get('items', []) - return Response(output=events) + return events def _get_service(self, scope=None):