Skip to content

Commit 47927dc

Browse files
committed
Small Python3 fix
1 parent fc75214 commit 47927dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

planemo/tool_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ def _build_galaxy(**kwds):
300300
# process raw cite urls
301301
cite_urls = kwds.get("cite_url", [])
302302
del kwds["cite_url"]
303-
citations = map(UrlCitation, cite_urls)
303+
citations = list(map(UrlCitation, cite_urls))
304304
kwds["bibtex_citations"] = citations
305305

306306
# handle requirements and containers

0 commit comments

Comments
 (0)