Commit c7d81cc4 by Chris Dodge

be sure to return an instance of the class

parent 791c00cd
...@@ -200,7 +200,7 @@ def edit_subsection(request, location): ...@@ -200,7 +200,7 @@ def edit_subsection(request, location):
# make sure that location references a 'sequential', otherwise return BadRequest # make sure that location references a 'sequential', otherwise return BadRequest
if item.location.category != 'sequential': if item.location.category != 'sequential':
return HttpResponseBadRequest return HttpResponseBadRequest()
parent_locs = modulestore().get_parent_locations(location) parent_locs = modulestore().get_parent_locations(location)
...@@ -1023,7 +1023,7 @@ def module_info(request, module_location): ...@@ -1023,7 +1023,7 @@ def module_info(request, module_location):
elif real_method == 'POST' or real_method == 'PUT': elif real_method == 'POST' or real_method == 'PUT':
return HttpResponse(json.dumps(set_module_info(get_modulestore(location), location, request.POST)), mimetype="application/json") return HttpResponse(json.dumps(set_module_info(get_modulestore(location), location, request.POST)), mimetype="application/json")
else: else:
return HttpResponseBadRequest return HttpResponseBadRequest()
@login_required @login_required
@ensure_csrf_cookie @ensure_csrf_cookie
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment