Skip to content

Commit

Permalink
Re #7327 Restrict age of completed jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
mdoucet authored and VickieLynch committed Jun 24, 2013
1 parent 3b3cfb1 commit bc885d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def _update_content(self):
for i in range(len(job_list)):

# Make sure that only recent jobs are displayed
oldest = DateAndTime(self._content.date_time_edit.dateTime().toString(QtCore.Qt.ISODate))
oldest = DateAndTime(str(self._content.date_time_edit.dateTime().toString(QtCore.Qt.ISODate)))
this_job = DateAndTime(str(job_list[i][4]))
if this_job<oldest:
continue
Expand Down

0 comments on commit bc885d1

Please sign in to comment.