changeset 107:f3949e4aca4b

We should not fetch single events. It is bad for you.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 18 Oct 2016 11:55:14 +0300
parents 481cfea49e19
children 7677c4992381
files multimerge.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/multimerge.py	Mon Oct 17 15:16:15 2016 +0300
+++ b/multimerge.py	Tue Oct 18 11:55:14 2016 +0300
@@ -522,7 +522,7 @@
         result = service.events().list(
             timeZone="EEST",
             calendarId=calendar["id"],
-            singleEvents=True,
+            singleEvents=False,
             showDeleted=False,
 #            orderBy="startTime",
             ).execute()
@@ -555,7 +555,7 @@
 gcm_debug(3, u"Fetching current target calendar events.")
 result = service.events().list(
     calendarId=cfg.dst_id,
-    singleEvents=True,
+    singleEvents=False,
     showDeleted=True,
     ).execute()