Inside webservice.py -> lListJobs function:
In the newest code in the repository:
running = [{"id": s.job, "spider": s.spider,
"start_time": s.start_time.isoformat(' ')} for s in spiders if s.project == project]
Inside the latest release package (1.0.1 when checked):
running = [{"id": s.job, "spider": s.spider} for s in spiders if s.project == project]
Inside webservice.py -> lListJobs function: In the newest code in the repository: