1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/a419b8beaa69/ changeset: a419b8beaa69 user: greg date: 2012-07-06 20:24:51 summary: Fix for handling lists when preparing to install tool shed repositories. affected #: 1 file diff -r ee9cd81ccce258a973c53f62489e54630d5d3fad -r a419b8beaa69ce84374ef1b33a9201301929b3e7 lib/galaxy/webapps/community/controllers/repository.py --- a/lib/galaxy/webapps/community/controllers/repository.py +++ b/lib/galaxy/webapps/community/controllers/repository.py @@ -1254,8 +1254,8 @@ # Redirect back to local Galaxy to perform install. url = '%sadmin_toolshed/prepare_for_install' % galaxy_url url += '?tool_shed_url=%s' % url_for( '/', qualified=True ) - url += '&repository_ids=%s' % ','.join( repository_ids ) - url += '&changeset_revisions=%s' % ','.join( changeset_revisions ) + url += '&repository_ids=%s' % ','.join( util.listify( repository_ids ) ) + url += '&changeset_revisions=%s' % ','.join( util.listify( changeset_revisions ) ) return trans.response.send_redirect( url ) @web.expose def load_invalid_tool( self, trans, repository_id, tool_config, changeset_revision, **kwd ): 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.