mirror of
https://github.com/myned/modufur.git
synced 2024-11-01 21:02:38 +00:00
Missed id > name conversion
This commit is contained in:
parent
9542c33f25
commit
3180a9dc60
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ class Administration:
|
||||||
for channel in u.tasks['auto_del']:
|
for channel in u.tasks['auto_del']:
|
||||||
temp = self.bot.get_channel(channel)
|
temp = self.bot.get_channel(channel)
|
||||||
self.bot.loop.create_task(self.queue_for_deletion(temp))
|
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.deleting = True
|
||||||
self.bot.loop.create_task(self.delete())
|
self.bot.loop.create_task(self.delete())
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue