diff options
author | 2019-02-22 14:35:51 +0100 | |
---|---|---|
committer | 2019-02-22 14:35:51 +0100 | |
commit | 41439ffe7d0ad6d7eb88ef82632cb6322a009049 (patch) | |
tree | c089b5ea51db2803a614f9166566d049b51e1053 | |
parent | Adding square brackets to signal it's an argument, not a subcommand (diff) |
Adding square brackets to user argument as well
-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 313d66c95..bf40fe409 100644 --- a/bot/cogs/alias.py +++ b/bot/cogs/alias.py @@ -74,7 +74,7 @@ class Alias: self, ctx: Context, user: User, *, reason: str ): """ - Alias for invoking <prefix>bigbrother watch user [reason]. + Alias for invoking <prefix>bigbrother watch [user] [reason]. """ await self.invoke(ctx, "bigbrother watch", user, reason=reason) @@ -82,7 +82,7 @@ class Alias: @command(name="unwatch", hidden=True) async def bigbrother_unwatch_alias(self, ctx, user: User, *, reason: str): """ - Alias for invoking <prefix>bigbrother unwatch user [reason]. + Alias for invoking <prefix>bigbrother unwatch [user] [reason]. """ await self.invoke(ctx, "bigbrother unwatch", user, reason=reason) |