1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/88873eed0092/ Changeset: 88873eed0092 User: greg Date: 2013-06-09 14:50:20 Summary: Fix for rendering the number of tool dependencies and repository dependencies that failed to install in the tool shed automated test framework rss feed. Affected #: 1 file diff -r af5c9914169f7920b5c132f587ddfad1507d1aa3 -r 88873eed009229288e76637246a76746ea63ef57 lib/galaxy/webapps/tool_shed/controllers/repository.py --- a/lib/galaxy/webapps/tool_shed/controllers/repository.py +++ b/lib/galaxy/webapps/tool_shed/controllers/repository.py @@ -1482,7 +1482,7 @@ description_lines.append( '\nThis repository did not install correctly. ' ) if tool_dependency_errors or repository_dependency_errors: description_lines.append( '\n%d tool dependencies and %d repository dependencies failed to install. ' % \ - len( tool_dependency_errors ), len( repository_dependency_errors ) ) + ( len( tool_dependency_errors ), len( repository_dependency_errors ) ) ) title = 'Revision %s of %s' % ( metadata_row.changeset_revision, repository.name ) # The guid attribute in an RSS feed's list of items allows a feed reader to choose not to show an item as updated # if the guid is unchanged. For functional test results, the citable URL is sufficiently unique to enable 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.