diff options
| author | 2018-07-27 14:44:06 +0000 | |
|---|---|---|
| committer | 2018-07-27 14:44:06 +0000 | |
| commit | 03b65b989afaf084b714c49a36e833fed3ae8642 (patch) | |
| tree | 3b8276c2c97b8dff5dd771e7a37a888f5fa7ec9f | |
| parent | Merge branch 'enhancement/fix-inconsistent-cog-load-logging' into 'master' (diff) | |
Allow the tags group to fetch tags
| -rw-r--r-- | bot/cogs/tags.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/tags.py b/bot/cogs/tags.py index afdd6c1dc..7499b2b1c 100644 --- a/bot/cogs/tags.py +++ b/bot/cogs/tags.py @@ -151,10 +151,10 @@ class Tags: return tag_data @group(name='tags', aliases=('tag', 't'), hidden=True, invoke_without_command=True) - async def tags_group(self, ctx: Context): + async def tags_group(self, ctx: Context, *, tag_name: TagNameConverter=None): """Show all known tags, a single tag, or run a subcommand.""" - await ctx.invoke(self.get_command) + await ctx.invoke(self.get_command, tag_name=tag_name) @tags_group.command(name='get', aliases=('show', 'g')) async def get_command(self, ctx: Context, *, tag_name: TagNameConverter=None): |