commit/galaxy-central: jmchilton: Fix metadata_util.py for recent changes to representation of ToolTestBuilder.inputs.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/54377b1aff65/ Changeset: 54377b1aff65 User: jmchilton Date: 2013-11-22 17:36:01 Summary: Fix metadata_util.py for recent changes to representation of ToolTestBuilder.inputs. Thanks to Greg for catching the error. Inputs display to the user will now be fully qualified - we should do some extra work I guess and display a prettified tree structure to match the new expressiveness of test inputs allowed. Affected #: 1 file diff -r 211f30207d48101a1250983d4f0f55c937f00a2e -r 54377b1aff65eb892d8e4067574c0cde552a2a57 lib/tool_shed/util/metadata_util.py --- a/lib/tool_shed/util/metadata_util.py +++ b/lib/tool_shed/util/metadata_util.py @@ -940,10 +940,7 @@ for required_file in ttb.required_files: value, extra = required_file required_files.append( ( value ) ) - inputs = [] - for input in ttb.inputs: - name, value, extra = input - inputs.append( ( name, value ) ) + inputs = [ input for input in ttb.inputs ] outputs = [] for output in ttb.outputs: name, file_name, extra = output 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