From 5a01e1e9a29b09db90a92dd8334adfcecb4b81c7 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Mon, 27 Aug 2018 01:21:22 +0200 Subject: [PATCH] [fix] went one level too deep --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index 644ffa1..b91ae1d 100644 --- a/run.py +++ b/run.py @@ -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('/')