From 587fbadd7cebfbcc200c0d6a90f73c2d1756ef62 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Mon, 9 Mar 2020 11:04:55 -0400 Subject: [PATCH] fix count --- src/gapi/calendar.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gapi/calendar.py b/src/gapi/calendar.py index 0c8fe3fb..a9212581 100644 --- a/src/gapi/calendar.py +++ b/src/gapi/calendar.py @@ -68,8 +68,8 @@ def printShowACLs(csvFormat): rows.append(row) else: formatted_acl = formatACLRule(rule) - count = display.current_count(i, count) - print(f'Calendar: {calendarId}, ACL: {formatted_acl}{count}') + current_count = display.current_count(i, count) + print(f'Calendar: {calendarId}, ACL: {formatted_acl}{current_count}') if csvFormat: display.write_csv_file( rows, titles, f'{calendarId} Calendar ACLs', toDrive)