1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/582d1e318dd3/ Changeset: 582d1e318dd3 User: greg Date: 2014-01-10 22:36:45 Summary: Fix message rendering for repositories with multiple heads. Affected #: 2 files diff -r 56b61e7d5bbcea1dff823cf78229289480ee15e7 -r 582d1e318dd3b604f2371a861f35c6fae1a2d36d templates/webapps/tool_shed/repository/manage_repository.mako --- a/templates/webapps/tool_shed/repository/manage_repository.mako +++ b/templates/webapps/tool_shed/repository/manage_repository.mako @@ -125,7 +125,7 @@ from tool_shed.util.shed_util_common import get_revision_label_from_ctx heads_str = '' for ctx in heads: - heads_str += get_revision_label_from_ctx( ctx ) + heads_str += '%s<br/>' % get_revision_label_from_ctx( ctx ) %> Contact the administrator of this Tool Shed as soon as possible and let them know that this repository has the following multiple heads which must be merged.<br/> diff -r 56b61e7d5bbcea1dff823cf78229289480ee15e7 -r 582d1e318dd3b604f2371a861f35c6fae1a2d36d templates/webapps/tool_shed/repository/view_repository.mako --- a/templates/webapps/tool_shed/repository/view_repository.mako +++ b/templates/webapps/tool_shed/repository/view_repository.mako @@ -72,7 +72,7 @@ from tool_shed.util.shed_util_common import get_revision_label_from_ctx heads_str = '' for ctx in heads: - heads_str += get_revision_label_from_ctx( ctx ) + heads_str += '%s<br/>' % get_revision_label_from_ctx( ctx ) %> Contact the administrator of this Tool Shed as soon as possible and let them know that this repository has the following multiple heads which must be merged.<br/> 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.