Skip to content

Commit

Permalink
Merge pull request #2723 from jmchilton/backport_2708
Browse files Browse the repository at this point in the history
[16.07] Backport #2708
  • Loading branch information
dannon committed Aug 4, 2016
2 parents 82430c0 + 2affd08 commit 8b0d88b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/dataset_collections/subcollections.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ def _split_dataset_collection( dataset_collection, collection_type ):
if child_collection.collection_type == collection_type:
split_elements.append( element )
else:
split_elements.extend( _split_dataset_collection( element.child_collection ) )
split_elements.extend( _split_dataset_collection( element.child_collection, element.child_collection.collection_type ) )

return split_elements

0 comments on commit 8b0d88b

Please sign in to comment.