aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Hassan Abouelela <[email protected]>2022-02-13 17:11:30 +0200
committerGravatar GitHub <[email protected]>2022-02-13 17:11:30 +0200
commitff30d3337572465a840f8f72066022339f966dcb (patch)
treed61fdc0ad668cd77da19a3728abfebcfa9076bb0
parentMerge pull request #2080 from python-discord/mbaruh/reminders-fix (diff)
parentAdd unsubscribe alias to subscribe command (diff)
Merge pull request #2082 from python-discord/subscribe-alias
Add unsubscribe alias to subscribe command
-rw-r--r--bot/exts/info/subscribe.py2
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,