Skip to content

Commit 13ae291

Browse files
authored
Merge pull request #3115 from jeff1evesque/bug-3099
#3099: Fix json dataset submission on web-interface
2 parents 9972795 + 4fe1e16 commit 13ae291

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

brain/session/data/dataset.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ def dataset2dict(model_type, upload):
107107
Draft4Validator(schema_svm()).validate(instance)
108108
elif model_type == list_model_type[1]:
109109
Draft4Validator(schema_svr()).validate(instance)
110+
converted.extend(instance)
110111
except Exception, error:
111112
msg = "%s contains invalid syntax, with error: %s" % (
112113
dataset['filename'],

0 commit comments

Comments
 (0)