changeset 84:16edb168daa1

No need to display target calendar ID twice.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 13 Jul 2016 15:38:12 +0300
parents 4446e70ede79
children da09a3b1edaa
files multimerge.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/multimerge.py	Wed Jul 13 14:32:09 2016 +0300
+++ b/multimerge.py	Wed Jul 13 15:38:12 2016 +0300
@@ -482,7 +482,7 @@
 if not dst_calendar:
     gcm_fatal(u"Could not find target/destination calendar ID for '"+ cfg.dest_name +"'.")
 else:
-    gcm_debug(3, u"Target calendar '{0}' id {1}".format(dst_calendar["summary"], dst_calendar["id"]))
+    gcm_debug(3, u"Target calendar '{0}' [ID {1} ]".format(dst_calendar["summary"], dst_calendar["id"]))
 
 
 ## Fetch colors
@@ -530,7 +530,7 @@
 
 
 ## Get current events
-gcm_debug(3, u"Fetching current target calendar events {0}".format(cfg.dest_id))
+gcm_debug(3, u"Fetching current target calendar events.")
 result = service.events().list(
     calendarId=cfg.dest_id,
     singleEvents=True,