From 52c2fdb771d606bc7f4056ce5dab176be57be7ac Mon Sep 17 00:00:00 2001 From: Luna Mendes Date: Tue, 20 Nov 2018 14:45:54 -0300 Subject: [PATCH] guilds: fix typo in route --- litecord/blueprints/guild/channels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litecord/blueprints/guild/channels.py b/litecord/blueprints/guild/channels.py index 21d89ec..0cb3666 100644 --- a/litecord/blueprints/guild/channels.py +++ b/litecord/blueprints/guild/channels.py @@ -62,7 +62,7 @@ async def create_guild_channel(guild_id: int, channel_id: int, await _specific_chan_create(channel_id, ctype, **kwargs) -@bp.route('//channels', methods=['GET']) +@bp.route('//channels', methods=['GET']) async def get_guild_channels(guild_id): """Get the list of channels in a guild.""" user_id = await token_check()