diff --git a/earwigbot/commands/remind.py b/earwigbot/commands/remind.py index 368891a..68463c8 100644 --- a/earwigbot/commands/remind.py +++ b/earwigbot/commands/remind.py @@ -79,6 +79,7 @@ class Remind(Command): Raises IndexError on failure. """ + rid = rid.upper() if user not in self.reminders: raise IndexError(rid) return [robj for robj in self.reminders[user] if robj.id == rid][0]