diff options
| author | 2022-02-13 17:11:30 +0200 | |
|---|---|---|
| committer | 2022-02-13 17:11:30 +0200 | |
| commit | ff30d3337572465a840f8f72066022339f966dcb (patch) | |
| tree | d61fdc0ad668cd77da19a3728abfebcfa9076bb0 | |
| parent | Merge pull request #2080 from python-discord/mbaruh/reminders-fix (diff) | |
| parent | Add unsubscribe alias to subscribe command (diff) | |
Merge pull request #2082 from python-discord/subscribe-alias
Add unsubscribe alias to subscribe command
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/info/subscribe.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/subscribe.py b/bot/exts/info/subscribe.py index 1299d5d59..eff0c13b8 100644 --- a/bot/exts/info/subscribe.py +++ b/bot/exts/info/subscribe.py @@ -171,7 +171,7 @@ class Subscribe(commands.Cog):          self.assignable_roles.sort(key=operator.methodcaller("is_currently_available"), reverse=True)      @commands.cooldown(1, 10, commands.BucketType.member) -    @commands.command(name="subscribe") +    @commands.command(name="subscribe", aliases=("unsubscribe",))      @redirect_output(          destination_channel=constants.Channels.bot_commands,          bypass_roles=constants.STAFF_PARTNERS_COMMUNITY_ROLES,  |