Skip to content

Commit e89644c

Browse files
committed
updated timezone to est
1 parent 38472f1 commit e89644c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/api/store/download.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2166,8 +2166,8 @@ def _community_events_download(self, community_id):
21662166
cell = self._get_cells_from_dict(columns, {
21672167
"Title": event.name,
21682168
"Description": event.description,
2169-
"Start Date": event.start_date_and_time.strftime("%Y-%m-%d %H:%M") if event.start_date_and_time else "",
2170-
"End Date": event.end_date_and_time.strftime("%Y-%m-%d %H:%M") if event.end_date_and_time else "",
2169+
"Start Date": get_massachusetts_time(event.start_date_and_time).strftime("%Y-%m-%d %H:%M") if event.start_date_and_time else "",
2170+
"End Date": get_massachusetts_time(event.end_date_and_time).strftime("%Y-%m-%d %H:%M") if event.end_date_and_time else "",
21712171
"Location": event.location,
21722172
"Event Type": event.event_type,
21732173
"Link": event.external_link if event.external_link else "",

0 commit comments

Comments
 (0)