commit/galaxy-central: guerler: Parameters: Add validation
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/db0a3f2a952e/ Changeset: db0a3f2a952e User: guerler Date: 2014-10-17 14:03:13+00:00 Summary: Parameters: Add validation Affected #: 1 file diff -r acb838d9af911cfc7c79328ffa87472913e5529c -r db0a3f2a952e1ee0a6f76c5355346b23f9166330 lib/galaxy/tools/parameters/basic.py --- a/lib/galaxy/tools/parameters/basic.py +++ b/lib/galaxy/tools/parameters/basic.py @@ -1163,8 +1163,9 @@ @staticmethod def _strip_c(column): - if column.startswith( 'c' ): - column = column.strip().lower()[1:] + if isinstance(column, basestring): + if column.startswith( 'c' ): + column = column.strip().lower()[1:] return column def get_column_list( self, trans, other_values ): 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