Commit 72b27c18 by Diana Huang

Merge pull request #3709 from edx/fix-ora-errors

Some more places where we have ORA errors
parents 2eda8a67 b3927830
...@@ -72,7 +72,7 @@ class ControllerQueryService(GradingService): ...@@ -72,7 +72,7 @@ class ControllerQueryService(GradingService):
def get_flagged_problem_list(self, course_id): def get_flagged_problem_list(self, course_id):
params = { params = {
'course_id': course_id, 'course_id': course_id.to_deprecated_string(),
} }
data = self.get(self.flagged_problem_list_url, params) data = self.get(self.flagged_problem_list_url, params)
...@@ -87,7 +87,7 @@ class ControllerQueryService(GradingService): ...@@ -87,7 +87,7 @@ class ControllerQueryService(GradingService):
def take_action_on_flags(self, course_id, student_id, submission_id, action_type): def take_action_on_flags(self, course_id, student_id, submission_id, action_type):
params = { params = {
'course_id': course_id, 'course_id': course_id.to_deprecated_string(),
'student_id': student_id, 'student_id': student_id,
'submission_id': submission_id, 'submission_id': submission_id,
'action_type': action_type 'action_type': action_type
......
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