Skip to content

Commit

Permalink
Fix can_map_over for mapping over paired inputs
Browse files Browse the repository at this point in the history
We'd only try mapping over the first collection type description
otherwise. I suppose we didn't notice because the first type is `list`
and therefore much more common. Noticed this while working on #5640.
  • Loading branch information
mvdbeek committed Jun 8, 2018
1 parent 940ed5f commit cb97f89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tools/parameters/history_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ def can_map_over(self, hdca):
# See note about the way this is sorted above.
if collection_type_description.is_subcollection_of_type(hdca_collection_type):
return collection_type_description
return False
return False

0 comments on commit cb97f89

Please sign in to comment.