Skip to content

Commit

Permalink
Update datahandling.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffschaller authored Nov 3, 2023
1 parent 3cb136f commit 9d82e3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datahandling.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 9d82e3e

Please sign in to comment.