1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/448487d92454/ Changeset: 448487d92454 User: Dave Bouvier Date: 2013-09-24 19:38:14 Summary: Update the tool migrations' install manager to account for recently added features. Affected #: 1 file diff -r f3c381ec1446562e5a95ae9f5feeac8e330f4ec9 -r 448487d92454f73319affb6a0bb99e7f4d7f3c2f lib/tool_shed/galaxy_install/install_manager.py --- a/lib/tool_shed/galaxy_install/install_manager.py +++ b/lib/tool_shed/galaxy_install/install_manager.py @@ -160,8 +160,15 @@ if rd_key in [ 'root_key', 'description' ]: continue for rd_tup in rd_tups: - rd_tool_shed, rd_name, rd_owner, rd_changeset_revision, rd_prior_installation_required = \ - common_util.parse_repository_dependency_tuple( rd_tup ) + if len( rd_tup ) == 4: + rd_tool_shed, rd_name, rd_owner, rd_changeset_revision = \ + common_util.parse_repository_dependency_tuple( rd_tup ) + elif len( rd_tup ) == 5: + rd_tool_shed, rd_name, rd_owner, rd_changeset_revision, rd_prior_installation_required = \ + common_util.parse_repository_dependency_tuple( rd_tup ) + elif len( rd_tup ) == 6: + rd_tool_shed, rd_name, rd_owner, rd_changeset_revision, rd_prior_installation_required, only_if_compiling_contained_td = \ + common_util.parse_repository_dependency_tuple( rd_tup ) # TODO: Make sure the repository description is applied to the new repository record during installation. tool_shed_repository = self.create_or_update_tool_shed_repository_record( rd_name, rd_owner, rd_changeset_revision, description=None ) if tool_shed_repository: Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.