mirror of https://github.com/janLo/punkow
Add missing parameter
This commit is contained in:
parent
f0e3cfe5f0
commit
cc5412a3bd
|
|
@ -151,7 +151,7 @@ class Worker(object):
|
||||||
mail.send_success_email(req.email, booking)
|
mail.send_success_email(req.email, booking)
|
||||||
|
|
||||||
await self._loop.run_in_executor(None, functools.partial(self.cleanup_booked, booked_ids))
|
await self._loop.run_in_executor(None, functools.partial(self.cleanup_booked, booked_ids))
|
||||||
await self._loop.run_in_executor(None, self.cleanup_old)
|
await self._loop.run_in_executor(None, functools.partial(self.cleanup_old, mail))
|
||||||
|
|
||||||
async def run(self):
|
async def run(self):
|
||||||
while True:
|
while True:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue