aboutsummaryrefslogtreecommitdiffstats
path: root/bot/cogs/reminders.py
diff options
context:
space:
mode:
authorGravatar Scragly <[email protected]>2019-01-16 23:18:57 +1000
committerGravatar Scragly <[email protected]>2019-01-16 23:18:57 +1000
commit38c13951e883a9ce8141c2d0942104672c8e65e4 (patch)
treed016ad628c2d7fcf0a774c518c723c8a75e2dec7 /bot/cogs/reminders.py
parentTidy, correct order of actions and notifications. (diff)
parentMerge pull request #256 from python-discord/fix-bb-emoji (diff)
Merge branch 'master' of https://github.com/python-discord/bot into reorder-mod-actions
# Conflicts: # bot/cogs/modlog.py
Diffstat (limited to '')
-rw-r--r--bot/cogs/reminders.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/reminders.py b/bot/cogs/reminders.py
index f6ed111dc..ddf5cc1f3 100644
--- a/bot/cogs/reminders.py
+++ b/bot/cogs/reminders.py
@@ -398,7 +398,7 @@ class Reminders(Scheduler):
)
if not failed:
- self.cancel_reminder(response_data["reminder_id"])
+ await self._delete_reminder(response_data["reminder_id"])
def setup(bot: Bot):