Commit 321d8582 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

fix a bug of getting movement_solver_configuration_list.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@33985 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 7aa56797
......@@ -150,7 +150,7 @@ class SolverProcess(XMLObject, ActiveProcess):
solver_key = solver.getSolverProcessGroupingKey(movement, configuration_mapping, solver_dict, movement_dict)
solver_key_dict = grouped_solver_dict.setdefault(solver, {})
solver_movement_dict = solver_key_dict.setdefault(solver_key, {})
movement_solver_configuration_list = movement_solver_dict.setdefault(solver, [])
movement_solver_configuration_list = solver_movement_dict.setdefault(movement, [])
if configuration_mapping not in movement_solver_configuration_list:
movement_solver_configuration_list.append(configuration_mapping)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment