diff options
author | 2022-01-16 20:50:55 +0100 | |
---|---|---|
committer | 2022-01-16 20:50:55 +0100 | |
commit | 7dc17ab0a2d858a373ecd952011916c19ec92358 (patch) | |
tree | 17aa3e39aedace919206f7cc37b763de994f6efc /bot/monkey_patches.py | |
parent | fix: don't rely on the current timezone (diff) | |
parent | Merge pull request #1005 from Sn4u/main (diff) |
Merge branch 'main' into aoc-lb-message
Diffstat (limited to 'bot/monkey_patches.py')
-rw-r--r-- | bot/monkey_patches.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/monkey_patches.py b/bot/monkey_patches.py index 19965c19..925d3206 100644 --- a/bot/monkey_patches.py +++ b/bot/monkey_patches.py @@ -6,7 +6,7 @@ from discord import Forbidden, http from discord.ext import commands log = logging.getLogger(__name__) -MESSAGE_ID_RE = re.compile(r'(?P<message_id>[0-9]{15,20})$') +MESSAGE_ID_RE = re.compile(r"(?P<message_id>[0-9]{15,20})$") class Command(commands.Command): |