1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/ff45728abdd1/ Changeset: ff45728abdd1 User: greg Date: 2013-09-24 19:44:38 Summary: Fix for browing repositories in the tool shed that are owned by a specified user. Affected #: 1 file diff -r 448487d92454f73319affb6a0bb99e7f4d7f3c2f -r ff45728abdd18e302667b06203ee524ded495ba9 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 @@ -416,7 +416,8 @@ repository_id = kwd.get( 'id', None ) if repository_id: repository = suc.get_repository_in_tool_shed( trans, repository_id ) - kwd[ 'user_id' ] = trans.security.encode_id( repository.user.id ) + user_id = trans.security.encode_id( repository.user.id ) + kwd[ 'user_id' ] = user_id else: # The user selected a repository revision which results in a refresh_on_change. selected_changeset_revision, repository = suc.get_repository_from_refresh_on_change( trans, **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.