commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/fd4b44698aeb/ Changeset: fd4b44698aeb User: guerler Date: 2013-11-12 19:01:17 Summary: Merge stable Affected #: 1 file https://bitbucket.org/galaxy/galaxy-central/commits/7b60d7eb9352/ Changeset: 7b60d7eb9352 User: guerler Date: 2013-11-12 19:02:51 Summary: Merge Affected #: 1 file diff -r fd4b44698aeb0dac0217da7872425552ac390f65 -r 7b60d7eb93520983f9ff1a731f62eac88e2979bc lib/galaxy/tools/parameters/grouping.py --- a/lib/galaxy/tools/parameters/grouping.py +++ b/lib/galaxy/tools/parameters/grouping.py @@ -493,7 +493,7 @@ rval = {} # Get the default value for the 'test element' and use it # to determine the current case - test_value = self.test_param.get_initial_value( trans, context, history=None ) + test_value = self.test_param.get_initial_value( trans, context, history=history ) current_case = self.get_current_case( test_value, trans ) # Store the current case in a special value rval['__current_case__'] = current_case @@ -502,7 +502,7 @@ # Fill in state for selected case child_context = ExpressionContext( rval, context ) for child_input in self.cases[current_case].inputs.itervalues(): - rval[ child_input.name ] = child_input.get_initial_value( trans, child_context, history=None ) + rval[ child_input.name ] = child_input.get_initial_value( trans, child_context, history=history ) return rval class ConditionalWhen( object ): 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