From 953140aa1bafa877ef25ddfc22eef0087290e52b Mon Sep 17 00:00:00 2001 From: Ahtisham Shahid Date: Thu, 26 Dec 2024 14:34:46 +0500 Subject: [PATCH] fix: resolved edx.course.goal.email.filtered parsing error (#36059) --- .../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 a221edc845..af48472886 100644 --- a/lms/djangoapps/course_goals/management/commands/goal_reminder_email.py +++ b/lms/djangoapps/course_goals/management/commands/goal_reminder_email.py @@ -284,7 +284,7 @@ class Command(BaseCommand): '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, } )