From aa88aa487c3c94fc50de551f40487092e81af50a Mon Sep 17 00:00:00 2001 From: Ahtisham Shahid Date: Thu, 26 Dec 2024 13:36:45 +0500 Subject: [PATCH] fix: resolved edx.course.goal.email.filtered parsing error --- .../course_goals/management/commands/goal_reminder_email.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/course_goals/management/commands/goal_reminder_email.py b/lms/djangoapps/course_goals/management/commands/goal_reminder_email.py index eea03bd79455..6059616b6f46 100644 --- a/lms/djangoapps/course_goals/management/commands/goal_reminder_email.py +++ b/lms/djangoapps/course_goals/management/commands/goal_reminder_email.py @@ -283,7 +283,7 @@ def handle_goal(goal, today, sunday_date, monday_date, session_id): 'uuid': session_id, 'timestamp': datetime.now(), 'reason': 'User time zone', - 'user_timezone': user_timezone, + 'user_timezone': str(user_timezone), 'now_in_users_timezone': now_in_users_timezone, } )