From 5b3af20ba1be52849d8c8680683dd0790164d8ac Mon Sep 17 00:00:00 2001 From: Joe Blaylock Date: Thu, 29 Aug 2013 16:25:02 -0700 Subject: [PATCH] Pass student grade label to certification process --- lms/djangoapps/certificates/queue.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lms/djangoapps/certificates/queue.py b/lms/djangoapps/certificates/queue.py index bc7bbc0e86..1628fee337 100644 --- a/lms/djangoapps/certificates/queue.py +++ b/lms/djangoapps/certificates/queue.py @@ -192,6 +192,7 @@ class XQueueCertInterface(object): 'username': student.username, 'course_id': course_id, 'name': profile.name, + 'grade': grade['grade'], } cert.status = status.generating cert.save()