commit/galaxy-central: guerler: SelectToolParameter: Fix type check before split operation.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/20882e294f92/ Changeset: 20882e294f92 User: guerler Date: 2014-10-16 17:42:17+00:00 Summary: SelectToolParameter: Fix type check before split operation. Affected #: 1 file diff -r 0d44e35432abe4071aa073d1eb4cad074b7fc067 -r 20882e294f925cb4c895e194d508bc15306e4403 lib/galaxy/tools/parameters/basic.py --- a/lib/galaxy/tools/parameters/basic.py +++ b/lib/galaxy/tools/parameters/basic.py @@ -818,7 +818,7 @@ if value == '': value = None else: - if not isinstance( value, list ): + if isinstance( value, basestring ): # Split on all whitespace. This not only provides flexibility # in interpreting values but also is needed because many browsers # use \r\n to separate lines. 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