Skip to content

Commit

Permalink
[FIX] result generation
Browse files Browse the repository at this point in the history
  • Loading branch information
etobella committed Nov 14, 2019
1 parent ed0b21d commit 3c25c0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oot/server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def result():
results = request.form
result_dic = results.to_dict(flat=False)
result = {}
for key in oot.fields:
for key in oot._fields:
value = result_dic.get(key, False)
if value:
value = value[0]
Expand Down

0 comments on commit 3c25c0c

Please sign in to comment.