lib/td/command/sched.rb in td-0.9.6 vs lib/td/command/sched.rb in td-0.9.7

- old
+ new

@@ -97,10 +97,10 @@ exit 1 end rows = [] history.each {|j| - rows << {:Time => j.scheduled_at, :JobID => j.job_id, :Status => j.status} + rows << {:Time => j.scheduled_at.localtime, :JobID => j.job_id, :Status => j.status} } puts cmd_render_table(rows, :fields => [:JobID, :Time, :Status]) end