1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/1425614da4ea/ changeset: 1425614da4ea user: dan date: 2012-10-16 15:47:20 summary: Fix for dataset display. affected #: 1 file diff -r cfaa85995d3682d2441db70e6d110f98a12e8d35 -r 1425614da4ea5eb4011f8176eb8afbb4a4dea6a1 lib/galaxy/webapps/galaxy/controllers/dataset.py --- a/lib/galaxy/webapps/galaxy/controllers/dataset.py +++ b/lib/galaxy/webapps/galaxy/controllers/dataset.py @@ -323,6 +323,8 @@ @web.expose def display(self, trans, dataset_id=None, preview=False, filename=None, to_ext=None, chunk=None, **kwd): data = self._check_dataset(trans, dataset_id) + if not isinstance( data, trans.app.model.DatasetInstance ): + return data return data.datatype.display_data(trans, data, preview, filename, to_ext, chunk, **kwd) @web.expose 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.