1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/2ce1ba52c6a7/ Changeset: 2ce1ba52c6a7 User: martenson Date: 2014-01-30 22:38:04 Summary: reports: addressing stringification bug Affected #: 1 file diff -r 72a210496cda233f28769dac11c116e0e6a71f18 -r 2ce1ba52c6a7b33676ffebb73053ab3f9e9baa21 lib/galaxy/webapps/reports/controllers/jobs.py --- a/lib/galaxy/webapps/reports/controllers/jobs.py +++ b/lib/galaxy/webapps/reports/controllers/jobs.py @@ -29,7 +29,7 @@ return job.tool_id class CreateTimeColumn( grids.DateTimeColumn ): def get_value( self, trans, grid, job ): - return job.create_time + return job.create_time.isoformat() class UserColumn( grids.GridColumn ): def get_value( self, trans, grid, job ): if job.user: 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.