From 9d82e3eabb0878e6f37c48b2925340159c4d3d95 Mon Sep 17 00:00:00 2001 From: Jeff Schaller <17769792+jeffschaller@users.noreply.github.com> Date: Fri, 3 Nov 2023 17:34:48 -0400 Subject: [PATCH] Update datahandling.py --- datahandling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datahandling.py b/datahandling.py index 819ed41145..385a728453 100644 --- a/datahandling.py +++ b/datahandling.py @@ -498,7 +498,7 @@ def fetch_lines_from_error_log(count): logs = ErrorLogs.fetch_last(count) s = '\n'.join([ "### {2} on {0} at {1}Z: {3}\n{4}".format( - GlobalVars.location, tz=timezone.utcfromtimestamp(time).isoformat()[:-7], + GlobalVars.location, datetime.utcfromtimestamp(time).isoformat()[:-7], name, message, tb) for time, name, message, tb in logs]) if s: