diff --git a/main.py b/main.py index 8a8f145..a9bd98f 100644 --- a/main.py +++ b/main.py @@ -206,6 +206,7 @@ async def main(): # main loop while True: + now = datetime.now() random.shuffle(TASK_QUEUE._queue) task = await TASK_QUEUE.get() @@ -237,7 +238,8 @@ async def main(): _lower_author_task_count(task.author) - bot.send("PRIVMSG", target=task.channel, message=f"{url} \"{task.term}\" ({task.author}) ") + completed_secs = (datetime.now() - now).total_seconds() + bot.send("PRIVMSG", target=task.channel, message=f"{url} \"{task.term}\" ({completed_secs}sec, {task.author}) ") await asyncio.sleep(10) loop = asyncio.get_event_loop()