diff options
author | 2019-09-14 11:14:32 -0700 | |
---|---|---|
committer | 2019-09-14 11:17:57 -0700 | |
commit | 5ec4a7044f9bbf41dc9460c452335cabcba602f3 (patch) | |
tree | a869d06f71d52a8d8084af8e264aa8dbce0b2148 | |
parent | Cogs.reload now has more readable error info. (diff) |
Fix tag command invocation in aliases
Co-authored-by: Leon Sandøy <[email protected]>
-rw-r--r-- | bot/cogs/alias.py | 4 |
1 files 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 <prefix>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( |