[fix] missing argument

This commit is contained in:
Laurent Peuch 2018-09-10 02:50:29 +02:00
parent 45f17398e0
commit 7b05b44c24

2
run.py
View file

@ -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():