Commit 248b80b5 by Justin Riley

dont use MultiDict as data with requests library

parent d6eedc89
...@@ -208,7 +208,7 @@ class ProctorModule(ProctorFields, XModule): ...@@ -208,7 +208,7 @@ class ProctorModule(ProctorFields, XModule):
# Proctor Panel requests (ALL USERS) # Proctor Panel requests (ALL USERS)
if dispatch.startswith('cmd/'): if dispatch.startswith('cmd/'):
return self.pp.request(dispatch, data, json=False) return self.pp.request(dispatch, dict(data.items()), json=False)
if not self.is_released(): # check each time we do get_html() if not self.is_released(): # check each time we do get_html()
html = self.not_released_html() html = self.not_released_html()
......
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