IndexError
Python 3.10.12: /usr/bin/python3
Mon Jul 15 21:47:15 2024

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /data/www/public_html/submission_system/metadata_upload.py in <module>
     65     prefix = "default"
     66 
=>   67     if "name" in data["submission"][0]:
     68         prefix = data["submission"][0]["name"]
     69 
data = {'authors': [], 'methods': [], 'softwares': [], 'submission': [], 'workflows': []}

IndexError: list index out of range
      args = ('list index out of range',)
      with_traceback = <built-in method with_traceback of IndexError object>