Skip to content

Commit

Permalink
Fix sections
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Feb 23, 2016
1 parent 1b25944 commit dda851d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tools/__init__.py
Expand Up @@ -1800,7 +1800,7 @@ def populate_model( inputs, state_inputs, group_inputs, other_values=None ):
populate_model( input.cases[ i ].inputs, current_state, tool_dict[ 'cases' ][ i ][ 'inputs' ], other_values )
elif input.type == 'section':
tool_dict = input.to_dict( request_context )
populate_model( tool_dict[ 'inputs' ], input.inputs, group_state, other_values )
populate_model( input.inputs, group_state, tool_dict[ 'inputs' ], other_values )
else:
try:
tool_dict = input.to_dict( request_context, other_values=other_values )
Expand Down

0 comments on commit dda851d

Please sign in to comment.