diff options
| -rw-r--r-- | uploader/background_jobs.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/uploader/background_jobs.py b/uploader/background_jobs.py index 7206694..9d9f4b8 100644 --- a/uploader/background_jobs.py +++ b/uploader/background_jobs.py @@ -159,7 +159,8 @@ def job_summary(job_id: uuid.UUID): return render_template("background-jobs/job-summary.html", job=job, display_datetime=make_datetime_formatter()) - return redirect(url_for("background-jobs.job_status", job["job_id"])) + return redirect(url_for( + "background-jobs.job_status", job_id=job["job_id"])) except JobNotFound as _jnf: return render_template("jobs/job-not-found.html", job_id=job_id) |
