Browse Source

Allow lower-case R for reminder IDs.

tags/v0.3
Ben Kurtovic 8 years ago
parent
commit
262490889b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      earwigbot/commands/remind.py

+ 1
- 1
earwigbot/commands/remind.py View File

@@ -255,7 +255,7 @@ class Remind(Command):
"""Handle a reminder-processing subcommand."""
user = data.host
reminder = None
if args and args[0].startswith("R"):
if args and args[0].upper().startswith("R"):
try:
reminder = self._get_reminder_by_id(user, args[0])
except IndexError:


Loading…
Cancel
Save