We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 114e0b3 commit fbc6e88Copy full SHA for fbc6e88
cms/server/contest/handlers/api.py
@@ -127,7 +127,7 @@ class ApiSubmitHandler(ApiContestHandler):
127
def post(self, task_name: str):
128
task = self.get_task(task_name)
129
if task is None:
130
- self.json({"error": "Not found"}, 404)
+ self.json({"error": "Task not found"}, 404)
131
return
132
133
# Only set the official bit when the user can compete and we are not in
0 commit comments