Fix stupid type issue @_@

This commit is contained in:
Alexandre Aubin 2023-02-10 04:06:29 +01:00
parent d5268df18a
commit 50ae066741

2
run.py
View file

@ -755,7 +755,7 @@ async def run_job(worker, job):
data = data["apps"]
public_level = data.get(job_app, {}).get("level")
job_url = app.config.BASE_URL + "/job/" + job.id
job_url = app.config.BASE_URL + "/job/" + str(job.id)
job_id_with_url = f"[#{job.id}]({job_url})"
if job.state == "error":
msg = f"Job {job_id_with_url} for {job_app} failed miserably :("