From 249aa8ef23dbd97d5a4ab897715b514f4654e270 Mon Sep 17 00:00:00 2001 From: cahrens Date: Wed, 11 Dec 2013 14:33:18 -0500 Subject: [PATCH] Fix missing _ import. Fallout from #1792. --- lms/djangoapps/instructor/views/legacy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lms/djangoapps/instructor/views/legacy.py b/lms/djangoapps/instructor/views/legacy.py index f919608527..759c390582 100644 --- a/lms/djangoapps/instructor/views/legacy.py +++ b/lms/djangoapps/instructor/views/legacy.py @@ -510,12 +510,12 @@ def instructor_dashboard(request, course_id): elif 'List course staff' in action: role = CourseStaffRole(course.location) - datatable = _role_members_table(role, _("List of Staff"), course_id) + datatable = _role_members_table(role, _u("List of Staff"), course_id) track.views.server_track(request, "list-staff", {}, page="idashboard") elif 'List course instructors' in action and GlobalStaff().has_user(request.user): role = CourseInstructorRole(course.location) - datatable = _role_members_table(role, _("List of Instructors"), course_id) + datatable = _role_members_table(role, _u("List of Instructors"), course_id) track.views.server_track(request, "list-instructors", {}, page="idashboard") elif action == 'Add course staff':