1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/753196399060/ changeset: 753196399060 user: greg date: 2011-10-27 19:37:48 summary: Fix for rendering workflow metadata. affected #: 1 file diff -r c528fab7ea8c89ab55cb9977d5916c72e5170546 -r 753196399060239c365040aa6ecb18cba345b69e templates/webapps/community/repository/common.mako --- a/templates/webapps/community/repository/common.mako +++ b/templates/webapps/community/repository/common.mako @@ -168,7 +168,11 @@ %for workflow_dict in workflow_dicts: <% workflow_name = workflow_dict[ 'name' ] - steps = workflow_dict[ 'steps' ] + if 'steps' in workflow_dict: + ## Initially steps were not stored in the metadata record. + steps = workflow_dict[ 'steps' ] + else: + steps = [] format_version = workflow_dict[ 'format-version' ] annotation = workflow_dict[ 'annotation' ] %> @@ -178,7 +182,6 @@ </td><td> %if 'steps' in workflow_dict: - ## Initially steps were not stored in the metadata record. ${len( steps )} %else: unknown 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.