From 3180a9dc608ce6bef71a9d7ed9816680a66133fd Mon Sep 17 00:00:00 2001 From: Myned Date: Mon, 20 Nov 2017 06:29:16 -0500 Subject: [PATCH] Missed id > name conversion --- src/main/cogs/management.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/cogs/management.py b/src/main/cogs/management.py index 7b40303..2001398 100644 --- a/src/main/cogs/management.py +++ b/src/main/cogs/management.py @@ -24,7 +24,7 @@ class Administration: for channel in u.tasks['auto_del']: temp = self.bot.get_channel(channel) self.bot.loop.create_task(self.queue_for_deletion(temp)) - print('AUTO-DELETING : #{}'.format(temp.id)) + print('AUTO-DELETING : #{}'.format(temp.name)) self.deleting = True self.bot.loop.create_task(self.delete())