From 2bdbdb974986f8ca9cf46a9ae770495b00a2494c Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Sun, 10 Jun 2018 21:56:40 -0800 Subject: [PATCH] fixed bug in _allowed_channels --- src/exts/admin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/exts/admin.py b/src/exts/admin.py index 3d83ec6..f02a2e2 100644 --- a/src/exts/admin.py +++ b/src/exts/admin.py @@ -177,8 +177,9 @@ class Admin: return if channels: + channel_str = '\n'.join(channels) await ctx.send('The following channels have been added to the allowed channel list: ' - f'{"\n".join(channels)}') + f'{channel_str}') await ctx.message.add_reaction('✅') else: await ctx.send(f'You are not authorized to run this command.')