Skip to content
This repository has been archived by the owner on Jul 24, 2020. It is now read-only.

Commit

Permalink
And another fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Feb 16, 2017
1 parent a92b4cd commit d67aad3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion galaxy/tools/deps/conda_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def install_conda_targets(conda_targets, env_name=None, conda_context=None):
create_args.append(conda_target.package_specifier)
return conda_context.exec_create(create_args)
else:
return conda_context.exec_install([conda_target.package_specifier])
return conda_context.exec_install([t.package_specifier for t in conda_targets])


def install_conda_target(conda_target, conda_context=None, skip_environment=False):
Expand Down

0 comments on commit d67aad3

Please sign in to comment.