[fix] went one level too deep

This commit is contained in:
Laurent Peuch 2018-08-27 01:21:22 +02:00
parent 22a430183c
commit 5a01e1e9a2

2
run.py
View file

@ -389,7 +389,7 @@ async def job(request, job_id):
if job.count == 0:
raise NotFound()
return {"job": job[0], 'relative_path_to_root': '../../', 'path': request.path}
return {"job": job[0], 'relative_path_to_root': '../', 'path': request.path}
@app.route('/')