fix in submitGrade

This commit is contained in:
Aran Zaiger 2015-08-03 00:25:31 +03:00
parent 4a75efe8c4
commit 1b3e4b74b9

View file

@ -313,9 +313,7 @@ def submitGrade(token, taskId, ownerId, grade):
g.userId=int(ownerId)
db.put(g)
db.save
return Response(response=grade.to_JSON(),
status=200,
mimetype="application/json")
return accepted()
except Exception as e:
print e.message
return bad_request("wrong format")