1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/819818c880b5/ Changeset: 819818c880b5 User: greg Date: 2014-06-04 15:21:18 Summary: Fix the exception handler in the Tool Shed APi submit() function so that an expected dict is returned instead of a string. Affected #: 1 file diff -r 0cb88fa06c32e13c8881ed90af02b239aa574313 -r 819818c880b543d9ef32aa61a099235c20937dae lib/tool_shed/scripts/api/common.py --- a/lib/tool_shed/scripts/api/common.py +++ b/lib/tool_shed/scripts/api/common.py @@ -197,7 +197,7 @@ print e.read( 1024 ) sys.exit( 1 ) else: - return 'Error. '+ str( e.read( 1024 ) ) + return dict( status='error', message=str( e.read( 1024 ) ) ) if not return_formatted: return r print 'Response' 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.