File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -804,13 +804,13 @@ def term_find_by_name_message(layout, name):
804
804
805
805
def term_get_product_solver_message (term , product_id ):
806
806
"""Convert to a ``TermGetProductSolversMessage`` object."""
807
- return TermGetProductSolversMessage (term = term .msg , product_id = product_id )
807
+ return TermGetProductSolversMessage (term = term .msg , product_id = product_id . value )
808
808
809
809
810
810
def term_set_solver_option_message (term , product_id , name , option ):
811
811
"""Convert to a ``TermSetSolverOptionMessage`` object."""
812
812
return TermSetSolverOptionMessage (
813
- term = term .msg , product_id = product_id , name = name , option = option
813
+ term = term .msg , product_id = product_id . value , name = name , option = option
814
814
)
815
815
816
816
You can’t perform that action at this time.
0 commit comments