Commit 0e07c27d by Julia Hansbrough

Merge pull request #3674 from edx/flowerhack/fix-ora

Flowerhack/fix ora
parents 754ada9c 9fb82d53
...@@ -85,7 +85,7 @@ class PeerGradingService(GradingService): ...@@ -85,7 +85,7 @@ class PeerGradingService(GradingService):
return result return result
def get_problem_list(self, course_id, grader_id): def get_problem_list(self, course_id, grader_id):
params = {'course_id': course_id, 'student_id': grader_id} params = {'course_id': course_id.to_deprecated_string(), 'student_id': grader_id}
result = self.get(self.get_problem_list_url, params) result = self.get(self.get_problem_list_url, params)
if 'problem_list' in result: if 'problem_list' in result:
...@@ -100,7 +100,7 @@ class PeerGradingService(GradingService): ...@@ -100,7 +100,7 @@ class PeerGradingService(GradingService):
return result return result
def get_notifications(self, course_id, grader_id): def get_notifications(self, course_id, grader_id):
params = {'course_id': course_id, 'student_id': grader_id} params = {'course_id': course_id.to_deprecated_string(), 'student_id': grader_id}
result = self.get(self.get_notifications_url, params) result = self.get(self.get_notifications_url, params)
self._record_result( self._record_result(
'get_notifications', 'get_notifications',
......
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