From 45f17398e01d004c62575593e476ec3c71b0fa78 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Mon, 10 Sep 2018 02:50:21 +0200 Subject: [PATCH] [fix] bad attribute name --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index ff730e9..dfafc13 100644 --- a/run.py +++ b/run.py @@ -215,7 +215,7 @@ async def launch_monthly_job(type): for repo in Repo.select().where(Repo.random_job_day == today): task_logger.info(f"Launch montly job for {repo.name} on day {today} of the month ") - await create_job(repo.name, repo.app_list_name, repo, job_command_last_part) + await create_job(repo.name, repo.app_list, repo, job_command_last_part) # launch tomorrow at 1 am now = datetime.now()