commit/galaxy-central: guerler: Reports: Fix time format in grids
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/3691fd3e12ef/ Changeset: 3691fd3e12ef Branch: stable User: guerler Date: 2014-02-13 17:19:54 Summary: Reports: Fix time format in grids Affected #: 1 file diff -r b463c73f334811d4c48298c40de9ac489261c32d -r 3691fd3e12ef8160ae993cef5ebd51ddeee95da1 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.strftime("%b %d, %Y, %H:%M:%S") 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.
participants (1)
-
commits-noreply@bitbucket.org