Skip to content

Commit

Permalink
Merge pull request #2028 from edx/adam/fix-error-student-data
Browse files Browse the repository at this point in the history
corrects typo in legacy.py (LMS-1675)
  • Loading branch information
adampalay committed Dec 23, 2013
2 parents 91f6481 + b923521 commit 80aa0eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lms/djangoapps/instructor/views/legacy.py
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ def getdat(u):
return [u.username, u.email] + [getattr(p, x, '') for x in profkeys]

datatable['data'] = [getdat(u) for u in enrolled_students]
datatable['title'] = _u('Student profile data for course {couse_id}').format(course_id = course_id)
datatable['title'] = _u('Student profile data for course {course_id}').format(course_id = course_id)
return return_csv('profiledata_{course_id}.csv'.format(course_id = course_id), datatable)

elif 'Download CSV of all responses to problem' in action:
Expand Down

0 comments on commit 80aa0eb

Please sign in to comment.