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: