This is the Data Integration, MRI, and Bioinformatics Component of the National Consortium on Alcohol and NeuroDevelopment in Adolescence (NCANDA), funded by the NIAAA.
There was a bug parsing the stringified list of errors returned from rc_entry.import_records(form_status, overwrite='overwrite' ). It was splitting on ",", but the stringified list is actually a "\n"-separated list of errors, ie
'"B-00026-M-1","limesurvey_ssaga_parent_complete","0","This field is located on a form that is locked. You must first unlock this form for this record."\n"B-00027-M-9","limesurvey_ssaga_parent_complete","0","This field is located on a form that is locked. You must first unlock this form for this record."
would only split on commas and so wouldn't separate the two errors.
There was a bug parsing the stringified list of errors returned from
rc_entry.import_records(form_status, overwrite='overwrite' )
. It was splitting on ",", but the stringified list is actually a "\n"-separated list of errors, ie '"B-00026-M-1","limesurvey_ssaga_parent_complete","0","This field is located on a form that is locked. You must first unlock this form for this record."\n"B-00027-M-9","limesurvey_ssaga_parent_complete","0","This field is located on a form that is locked. You must first unlock this form for this record." would only split on commas and so wouldn't separate the two errors.