From e0da6a4e48da1e8fd31e7aa8a7f0b1b9c1b5dc67 Mon Sep 17 00:00:00 2001 From: Galen Guyer Date: Mon, 2 Nov 2020 10:57:53 -0500 Subject: hack to display date correctly --- poller/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poller/__init__.py b/poller/__init__.py index 2391b8a..b38bcd1 100644 --- a/poller/__init__.py +++ b/poller/__init__.py @@ -201,7 +201,7 @@ def get_data(): 'isolation_off_campus': isolation_off_campus, 'beds_available': beds_available, 'tests_administered': tests_administered, - 'last_updated': datetime.datetime.now() + 'last_updated': str(datetime.datetime.now()).replace('GMT', 'EST') } LATEST_DATA = current_data if not db_is_same(current_data): -- cgit v1.2.3