Skip to content

Commit

Permalink
Python 3 fix.
Browse files Browse the repository at this point in the history
Fixes #765 I think.
  • Loading branch information
jmchilton committed Feb 26, 2018
1 parent 81b56d4 commit 3e46d71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion planemo/runnable.py
Expand Up @@ -93,7 +93,7 @@ def for_path(path):

def for_paths(paths):
"""Return a specialized list of Runnable objects for paths."""
return map(for_path, paths)
return list(map(for_path, paths))


def cases(runnable):
Expand Down

0 comments on commit 3e46d71

Please sign in to comment.