diff options
| author | 2018-02-09 10:18:52 +0000 | |
|---|---|---|
| committer | 2018-02-09 10:18:52 +0000 | |
| commit | 16577710cd966117abe3dc62fbb5187048073a95 (patch) | |
| tree | 9a96c71a6839b5d209289e2547123e1dfd5ac59c | |
| parent | Send message to the devlog channel when the bot connects (diff) | |
Fix missing alias for info command
| -rw-r--r-- | bot/cogs/bot.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/bot.py b/bot/cogs/bot.py index afec2844a..545bfd47b 100644 --- a/bot/cogs/bot.py +++ b/bot/cogs/bot.py @@ -51,7 +51,7 @@ class Bot:          await ctx.send(embed=embed) -    @command(name="bot.info()", aliases=["bot.info", "bot.about", "bot.about()", "info"]) +    @command(name="bot.info()", aliases=["bot.info", "bot.about", "bot.about()", "info", "info()"])      async def info_wrapper(self, ctx: Context):          """          Get information about the bot  |