Skip to content
Snippets Groups Projects
Unverified Commit 378ebe54 authored by Kyle McCormick's avatar Kyle McCormick Committed by GitHub
Browse files

Merge pull request #26992 from edx/ciduarte/fix

replace six with str
parents 817adc29 f50b71b0
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment