commit/galaxy-central: inithello: Don't try to fetch the nonexistent status element from the dependency tuples.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/45602721c2af/ Changeset: 45602721c2af User: inithello Date: 2013-12-13 17:02:33 Summary: Don't try to fetch the nonexistent status element from the dependency tuples. Affected #: 1 file diff -r 5648e6d15803412cf9467bafd89bfb20d7a5281a -r 45602721c2af7ed02b319110d29fd5e8dcfd20b1 templates/admin/tool_shed_repository/deactivate_or_uninstall_repository.mako --- a/templates/admin/tool_shed_repository/deactivate_or_uninstall_repository.mako +++ b/templates/admin/tool_shed_repository/deactivate_or_uninstall_repository.mako @@ -89,7 +89,7 @@ <ul> %for installed_dependent_repository_tup in installed_dependent_repositories: <% - tool_shed, name, owner, installed_changeset_revision, status = installed_dependent_repository_tup + tool_shed, name, owner, installed_changeset_revision = installed_dependent_repository_tup %><li>Revision <b>${ installed_changeset_revision | h}</b> of repository <b>${name | h}</b> owned by <b>${owner | h}</b></li> %endfor @@ -100,7 +100,7 @@ <ul> %for td_tup in installed_runtime_dependent_tool_dependencies: <% - tool_shed_repository_id, name, version, type, status = td_tup + tool_shed_repository_id, name, version, type = td_tup containing_repository = irm.get_containing_repository_for_tool_dependency( td_tup ) repository_name = containing_repository.name changeset_revision = containing_repository.changeset_revision 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.
participants (1)
-
commits-noreply@bitbucket.org