Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechromancer committed Dec 26, 2023
1 parent b47389f commit a42d66e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bbot/modules/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ async def _worker(self):
self.scan.stats.event_consumed(event, self)
self.debug(f"Handling {event}")
async with self.scan._acatch(context), self._task_counter.count(context):
task_name = f"{self.name}.handle_event({event]})"
task_name = f"{self.name}.handle_event({event})"
handle_event_task = asyncio.create_task(self.handle_event(event), name=task_name)
await handle_event_task
self.debug(f"Finished handling {event}")
Expand Down

0 comments on commit a42d66e

Please sign in to comment.