commit/galaxy-central: jgoecks: Fix bug that prevented workflows with runtime parameters from being exported.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/835656900dd0/ changeset: r5387:835656900dd0 user: jgoecks date: 2011-04-14 16:05:00 summary: Fix bug that prevented workflows with runtime parameters from being exported. affected #: 1 file (5 bytes) --- a/lib/galaxy/web/controllers/workflow.py Thu Apr 14 09:02:20 2011 -0400 +++ b/lib/galaxy/web/controllers/workflow.py Thu Apr 14 10:05:00 2011 -0400 @@ -1587,7 +1587,7 @@ for name, val in module.state.inputs.items(): input_type = type( val ) if input_type == RuntimeValue: - step['inputs'].append( { "name" : name, "description" : "runtime parameter for tool %s" % module.get_name() } ) + step_dict['inputs'].append( { "name" : name, "description" : "runtime parameter for tool %s" % module.get_name() } ) elif input_type == dict: # Input type is described by a dict, e.g. indexed parameters. for partname, partval in val.items(): 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)
-
Bitbucket