1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/9852a9c70535/ Changeset: 9852a9c70535 User: greg Date: 2013-09-25 22:37:52 Summary: Thanks to John Chilton - Fix for importing exported workflows contained in an installed tool shed repository. Affected #: 1 file diff -r 5ee26d53a18f9c66e21d0663f877b5f12fb4aabc -r 9852a9c70535775c6423a42d6924eead6c4bdad1 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 @@ -121,12 +121,12 @@ for exported_workflow_dict in exported_workflows: workflow_name = exported_workflow_dict[ 'workflow_name' ] workflow, status, message = workflow_util.import_workflow( trans, repository, workflow_name ) - if status == 'error': - log.error( message, exc_info=True ) - trans.response.status = 500 - return message - else: - imported_workflow_dicts.append( workflow.to_dict( view='element' ) ) + if status == 'error': + log.error( message, exc_info=True ) + trans.response.status = 500 + return message + else: + imported_workflow_dicts.append( workflow.to_dict( view='element' ) ) return imported_workflow_dicts @web.expose_api 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.