Skip to content

Commit

Permalink
Need to unnpack kwargs (ping @bwlang)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Jul 22, 2016
1 parent fd9eb82 commit dcb57a6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/galaxy/webapps/galaxy/controllers/admin_toolshed.py
Expand Up @@ -1132,7 +1132,8 @@ def prepare_for_install( self, trans, **kwd ):

if install_tool_dependencies:
view = views.DependencyResolversView(self.app)
[view.manager_dependency(req) for req in uniq_reqs.values()] #not working yet...
for r in uniq_reqs.values():
view.manager_dependency(**r)

encoded_kwd, query, tool_shed_repositories, encoded_repository_ids = \
install_repository_manager.initiate_repository_installation( installation_dict )
Expand Down

0 comments on commit dcb57a6

Please sign in to comment.