aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2020-11-02 10:57:53 -0500
committerGalen Guyer <galen@galenguyer.com>2020-11-02 10:57:53 -0500
commite0da6a4e48da1e8fd31e7aa8a7f0b1b9c1b5dc67 (patch)
treefb9f235a45521adabedb397e3c24481e75b133f8
parent8634f579f03711e2490fa95d958ca07708a967f4 (diff)
hack to display date correctly
-rw-r--r--poller/__init__.py2
1 files changed, 1 insertions, 1 deletions
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):