From 5ec4a7044f9bbf41dc9460c452335cabcba602f3 Mon Sep 17 00:00:00 2001 From: MarkKoz Date: Sat, 14 Sep 2019 11:14:32 -0700 Subject: Fix tag command invocation in aliases MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Leon Sandøy --- bot/cogs/alias.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/cogs/alias.py b/bot/cogs/alias.py index dbdd2ee6a..a44c47331 100644 --- a/bot/cogs/alias.py +++ b/bot/cogs/alias.py @@ -143,7 +143,7 @@ class Alias: Alias for invoking tags get traceback. """ - await self.invoke(ctx, "tags get traceback") + await self.invoke(ctx, "tags get", tag_name="traceback") @group(name="get", aliases=("show", "g"), @@ -167,7 +167,7 @@ class Alias: tag_name: str - tag to be viewed. """ - await self.invoke(ctx, "tags get", tag_name) + await self.invoke(ctx, "tags get", tag_name=tag_name) @get_group_alias.command(name="docs", aliases=("doc", "d"), hidden=True) async def docs_get_alias( -- cgit v1.2.3