commit/galaxy-central: guerler: Grids: Fix filter column separator
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/c043a2ca8051/ Changeset: c043a2ca8051 User: guerler Date: 2014-02-03 22:23:53 Summary: Grids: Fix filter column separator Affected #: 1 file diff -r 519797105a694ac9044e5e6139380a51c5c5fc52 -r c043a2ca8051de612d4e895ba55e6dce0697a8d3 lib/galaxy/web/framework/helpers/grids.py --- a/lib/galaxy/web/framework/helpers/grids.py +++ b/lib/galaxy/web/framework/helpers/grids.py @@ -132,7 +132,7 @@ if len( column_filter ) == 1: column_filter = column_filter[0] # Interpret ',' as a separator for multiple terms. - elif isinstance( column_filter, basestring ) and column_filter.find(',') != -1: + if isinstance( column_filter, basestring ) and column_filter.find(',') != -1: column_filter = column_filter.split(',') # Check if filter is empty 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