1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/8ce7bbba361a/ changeset: 8ce7bbba361a user: dan date: 2012-10-09 19:50:47 summary: Fix for preview display of tabular items when column_number is None. affected #: 1 file diff -r 259a4e01f105b6f7396292db3ae0971d049b6ce7 -r 8ce7bbba361a93a1a4a50029a3fd6a6266c1934d lib/galaxy/datatypes/tabular.py --- a/lib/galaxy/datatypes/tabular.py +++ b/lib/galaxy/datatypes/tabular.py @@ -277,10 +277,13 @@ column_types = dataset.metadata.column_types if not column_types: column_types = [] + column_number = dataset.metadata.columns + if column_number is None: + column_number = 'null' return trans.fill_template( "/dataset/tabular_chunked.mako", dataset = dataset, chunk = self.get_chunk(trans, dataset, 0), - column_number = dataset.metadata.columns, + column_number = column_number, column_names = column_names, column_types = column_types ) 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.