From 7b05b44c24a787adbb366ef85a8222fea0338726 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Mon, 10 Sep 2018 02:50:29 +0200 Subject: [PATCH] [fix] missing argument --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index dfafc13..e8d76c8 100644 --- a/run.py +++ b/run.py @@ -226,7 +226,7 @@ async def launch_monthly_job(type): # XXX if relaunched twice the same day that will duplicate the jobs await asyncio.sleep(seconds_until_next_run) - asyncio.ensure_future(launch_monthly_job()) + asyncio.ensure_future(launch_monthly_job(type=type)) async def jobs_dispatcher():