Skip to content

Commit 3e46d71

Browse files
committed
Python 3 fix.
Fixes galaxyproject#765 I think.
1 parent 81b56d4 commit 3e46d71

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

planemo/runnable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def for_path(path):
9393

9494
def for_paths(paths):
9595
"""Return a specialized list of Runnable objects for paths."""
96-
return map(for_path, paths)
96+
return list(map(for_path, paths))
9797

9898

9999
def cases(runnable):

0 commit comments

Comments
 (0)