Skip to content

Commit

Permalink
fix: Add timezone to time in email
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasfarias committed Apr 18, 2024
1 parent abb196a commit cce390e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posthog/tasks/email.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ async def send_batch_export_run_failure(
subject=f"PostHog: {batch_export_run.batch_export.name} batch export run failure",
template_name="batch_export_run_failure",
template_context={
"time": batch_export_run.last_updated_at.strftime("%I:%M%p on %B %d"),
"time": batch_export_run.last_updated_at.strftime("%I:%M%p %Z on %B %d"),
"team": team,
"id": batch_export_run.batch_export.id,
"name": batch_export_run.batch_export.name,
Expand Down

0 comments on commit cce390e

Please sign in to comment.