From 7c211c664f0b290a91a79a66eb4480d541de7a3e Mon Sep 17 00:00:00 2001 From: Ross Scroggs Date: Mon, 16 May 2016 12:36:52 -0700 Subject: [PATCH] Increment counter in updateCalendar --- src/gam.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gam.py b/src/gam.py index 1cc77b81..5186ff97 100755 --- a/src/gam.py +++ b/src/gam.py @@ -2478,6 +2478,7 @@ def updateCalendar(users): print u"Updating %s's subscription to calendar %s (%s of %s)" % (user, calendarId, i, count) cal = buildGAPIServiceObject(u'calendar', user) callGAPI(cal.calendarList(), u'update', calendarId=calendarId, body=body, colorRgbFormat=colorRgbFormat) + i += 1 def doPrinterShowACL(): cp = buildGAPIObject(u'cloudprint')