commit/galaxy-central: dan: Fix typo (val to value).
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/316f79f7bc1a/ changeset: r5589:316f79f7bc1a user: dan date: 2011-05-20 07:17:35 summary: Fix typo (val to value). affected #: 1 file (4 bytes) --- a/lib/galaxy/tools/__init__.py Thu May 19 15:38:12 2011 -0400 +++ b/lib/galaxy/tools/__init__.py Fri May 20 06:17:35 2011 +0100 @@ -1854,7 +1854,7 @@ if isinstance( value, dict ): rval.append( self._prepare_datasource_json_param_dict( value ) ) elif isinstance( value, list ): - rval.append( self._prepare_datasource_json_list( val ) ) + rval.append( self._prepare_datasource_json_list( value ) ) else: rval.append( str( value ) ) return rval @@ -1864,7 +1864,7 @@ if isinstance( value, dict ): rval[ key ] = self._prepare_datasource_json_param_dict( value ) elif isinstance( value, list ): - rval[ key ] = self._prepare_datasource_json_list( val ) + rval[ key ] = self._prepare_datasource_json_list( value ) else: rval[ key ] = str( value ) return rval 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