diff --git a/platypush/plugins/google/youtube.py b/platypush/plugins/google/youtube.py index 1f9b4514..1755eab1 100644 --- a/platypush/plugins/google/youtube.py +++ b/platypush/plugins/google/youtube.py @@ -64,6 +64,7 @@ class GoogleYoutubePlugin(GooglePlugin, CalendarInterface): service = self._get_service() result = service.search().list(part=parts, q=query, type=types, + maxResults=max_results, **kwargs).execute() events = result.get('items', [])