commit/galaxy-central: greg: Fix for retrieving the list of cloned tool shed repositories from a local Galaxy instance.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/418f75a6041a/ changeset: 418f75a6041a user: greg date: 2011-09-30 16:50:02 summary: Fix for retrieving the list of cloned tool shed repositories from a local Galaxy instance. affected #: 1 file (-1 bytes) --- a/lib/galaxy/web/base/controller.py Fri Sep 30 09:48:56 2011 -0400 +++ b/lib/galaxy/web/base/controller.py Fri Sep 30 10:50:02 2011 -0400 @@ -1304,7 +1304,8 @@ status = params.get( 'status', 'done' ) if webapp == 'galaxy': cloned_repositories = trans.sa_session.query( trans.model.ToolShedRepository ) \ - .filter( trans.model.ToolShedRepository.deleted == False ) + .filter( trans.model.ToolShedRepository.deleted == False ) \ + .all() return trans.fill_template( '/webapps/galaxy/admin/index.mako', webapp=webapp, cloned_repositories=cloned_repositories, 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)
-
Bitbucket