From c8d267fb72b6dd6e9e42435f8609eb6e0b5ad48d Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Wed, 10 Oct 2012 22:03:08 -0400 Subject: [PATCH] Fix minor typo in access.py --- lms/djangoapps/courseware/access.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/courseware/access.py b/lms/djangoapps/courseware/access.py index 4d49684ffe..c57c65d066 100644 --- a/lms/djangoapps/courseware/access.py +++ b/lms/djangoapps/courseware/access.py @@ -325,7 +325,7 @@ def _course_staff_group_name(location): if _does_course_group_name_exist(legacy_name): return legacy_name - return 'staff_%s' & loc.course_id + return 'staff_%s' % loc.course_id def _course_instructor_group_name(location):