Skip to content

Commit

Permalink
Fix bad date format for datetimeutc field
Browse files Browse the repository at this point in the history
  • Loading branch information
adevathaire authored Dec 2, 2024
1 parent 0b13bc9 commit 67d327d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pgactivity/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def yn_na(value: bool | None) -> str:
return yn(value)

for p in procs:
dt = datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%m:%SZ")
dt = datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%SZ")
pid = p.get("pid", "N/A")
database = p.get("database", "N/A") or ""
appname = p.get("application_name", "N/A")
Expand Down

0 comments on commit 67d327d

Please sign in to comment.