You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an issue when importing multiple psa files to a model even though "Use Config File" is checked. This only happens when dragging, and when I try to drag a single .psa with Use Config checked, it won't use the .config either and brings up an error: "Failed to read PSA config file: 'odict_keys' object is not subscriptable."
This doesn't happen when importing manually through the file view, but I'm not able to import multiple psa's that way. Any help appreciated.
EDIT: Fix:
Location: Line 134 in operators.py, PSA_OT_import_multiple.execute()
# Before (current code causing error):sequence_names=psa_reader.sequences.keys()
# After (fix):sequence_names=list(psa_reader.sequences.keys())
The text was updated successfully, but these errors were encountered:
I have an issue when importing multiple psa files to a model even though "Use Config File" is checked. This only happens when dragging, and when I try to drag a single .psa with Use Config checked, it won't use the .config either and brings up an error: "Failed to read PSA config file: 'odict_keys' object is not subscriptable."
This doesn't happen when importing manually through the file view, but I'm not able to import multiple psa's that way. Any help appreciated.
EDIT: Fix:
Location: Line 134 in operators.py, PSA_OT_import_multiple.execute()
The text was updated successfully, but these errors were encountered: