fixed bug in _allowed_channels
This commit is contained in:
parent
44c8ca1eb5
commit
95c7bcb928
@ -178,7 +178,7 @@ class Admin:
|
|||||||
return
|
return
|
||||||
|
|
||||||
if channels:
|
if channels:
|
||||||
channel_str = '\n'.join(channels)
|
channel_str = '\n'.join([str(channel) for channel in channels])
|
||||||
await ctx.send('The following channels have been added to the allowed channel list: '
|
await ctx.send('The following channels have been added to the allowed channel list: '
|
||||||
f'{channel_str}')
|
f'{channel_str}')
|
||||||
await ctx.message.add_reaction('✅')
|
await ctx.message.add_reaction('✅')
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user