From 7dec1b3c3f267f2781bab99c6b8f823350af50f3 Mon Sep 17 00:00:00 2001 From: Vik Paruchuri Date: Tue, 23 Oct 2012 19:00:26 -0400 Subject: [PATCH] bugfix --- lms/djangoapps/courseware/module_render.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lms/djangoapps/courseware/module_render.py b/lms/djangoapps/courseware/module_render.py index 9b9c621d84..0fdbb91ac3 100644 --- a/lms/djangoapps/courseware/module_render.py +++ b/lms/djangoapps/courseware/module_render.py @@ -396,7 +396,7 @@ def xqueue_callback(request, course_id, userid, id, dispatch): tags=["org:{0}".format(org), "course:{0}".format(course_num), "run:{0}".format(run), - "score_bucket:{0}".format(score_bucket)), + "score_bucket:{0}".format(score_bucket), "type:xqueue"]) return HttpResponse("") @@ -494,7 +494,7 @@ def modx_dispatch(request, dispatch, location, course_id): tags=["org:{0}".format(org), "course:{0}".format(course_num), "run:{0}".format(run), - "score_bucket:{0}".format(score_bucket)), + "score_bucket:{0}".format(score_bucket), "type:ajax"])