diff --git a/lms/djangoapps/courseware/module_render.py b/lms/djangoapps/courseware/module_render.py index a61e8b9e23..65e30475f2 100644 --- a/lms/djangoapps/courseware/module_render.py +++ b/lms/djangoapps/courseware/module_render.py @@ -374,7 +374,7 @@ def modx_dispatch(request, dispatch, location, course_id): # ''' (fix emacs broken parsing) # Check for submitted files and basic file size checks - p = request.POST.dict() + p = request.POST.copy() if request.FILES: for fileinput_id in request.FILES.keys(): inputfiles = request.FILES.getlist(fileinput_id) diff --git a/lms/templates/seq_module.html b/lms/templates/seq_module.html index be0f4902d4..985e3c9851 100644 --- a/lms/templates/seq_module.html +++ b/lms/templates/seq_module.html @@ -21,7 +21,7 @@ % for item in items: -