From f50b71b03c0d9b015981703533a98ce63a5abc37 Mon Sep 17 00:00:00 2001 From: Carla Duarte Date: Fri, 12 Mar 2021 15:32:05 -0500 Subject: [PATCH] replace six with str --- lms/djangoapps/courseware/tabs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/courseware/tabs.py b/lms/djangoapps/courseware/tabs.py index c025956444..1c66b4bb56 100644 --- a/lms/djangoapps/courseware/tabs.py +++ b/lms/djangoapps/courseware/tabs.py @@ -114,7 +114,7 @@ class ProgressTab(EnrolledTab): if course_home_mfe_progress_tab_is_active(course.id): return get_learning_mfe_home_url(course_key=course.id, view_name=self.view_name) else: - return reverse_func(self.view_name, args=[six.text_type(course.id)]) + return reverse_func(self.view_name, args=[str(course.id)]) tab_dict['link_func'] = link_func super(ProgressTab, self).__init__(tab_dict) # pylint: disable=super-with-arguments