Fixed bug in gam print vacation where endDate value was not converted to yyyy-mm-dd format.

This commit is contained in:
Ross Scroggs
2023-09-22 07:14:57 -07:00
parent 115dde8c2f
commit dab05fb5c5
5 changed files with 17 additions and 9 deletions

View File

@@ -2,6 +2,10 @@
Merged GAM-Team version
6.63.19
Fixed bug in `gam print vacation` where `endDate` value was not converted to `yyyy-mm-dd` format.
6.63.18
Updated `gam print|show ownership` to show the correct file owner when the most recent event is `change_owner`.

View File

@@ -68075,7 +68075,7 @@ def printShowVacation(users):
elif enabled:
row['startdate'] = VACATION_START_STARTED
if 'endTime' in result:
row['enddate'] = (result['endTime'])
row['enddate'] = formatLocalDatestamp((result['endTime'])
elif enabled:
row['enddate'] = VACATION_END_NOT_SPECIFIED
row['subject'] = result.get('responseSubject', 'None')