mirror of
https://github.com/YunoHost/yunorunner.git
synced 2024-09-03 20:05:52 +02:00
Fix stupid type issue @_@
This commit is contained in:
parent
d5268df18a
commit
50ae066741
1 changed files with 1 additions and 1 deletions
2
run.py
2
run.py
|
@ -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 :("
|
||||
|
|
Loading…
Add table
Reference in a new issue