commit/galaxy-central: dannon: Fix string templating mismatch in tool shed repository API. Similar to 9328:b2a5169daea4
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/5ab62ddc6b7d/ Changeset: 5ab62ddc6b7d User: dannon Date: 2013-04-09 19:36:18 Summary: Fix string templating mismatch in tool shed repository API. Similar to 9328:b2a5169daea4 Affected #: 1 file diff -r c9cbd395ed49dc8e4e211648c96ed1dcb5530aa4 -r 5ab62ddc6b7d0b1f0494bac7dadd466ca0b963e8 lib/galaxy/webapps/galaxy/api/tool_shed_repositories.py --- a/lib/galaxy/webapps/galaxy/api/tool_shed_repositories.py +++ b/lib/galaxy/webapps/galaxy/api/tool_shed_repositories.py @@ -152,7 +152,7 @@ repo_info_dict = items[ 2 ] else: message = "Unable to retrieve installation information from tool shed %s for revision %s of repository %s owned by %s: %s" % \ - ( str( tool_shed_url ), str( name ), str( owner ), str( changeset_revision ) ) + ( str( tool_shed_url ), str( changeset_revision ), str( name ), str( owner ), str( e ) ) log.error( message, exc_info=True ) trans.response.status = 500 return dict( status='error', error=message ) 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)
-
commits-noreply@bitbucket.org