1
0
mirror of https://github.com/avatao-content/test-tutorial-framework synced 2025-06-28 10:45:13 +00:00

Conform new fsm_update API

This commit is contained in:
Kristóf Tóth
2018-07-24 17:17:14 +02:00
parent b15e442039
commit 8fab3d2226
2 changed files with 5 additions and 4 deletions

View File

@ -15,7 +15,7 @@ class ControllerPostHandler(RequestHandler):
def post(self, *args, **kwargs):
self.set_header('Content-Type', 'application/json')
self.write(json.dumps({
'solved': self.controller.in_accepted_state
'solved': self.controller.fsm_in_accepted_state
}))