diff options
author | 2022-01-08 22:27:48 +0000 | |
---|---|---|
committer | 2022-01-08 22:28:29 +0000 | |
commit | ce16d0df6c10121f761899daea07d3656c4e7537 (patch) | |
tree | 9d8b2db3085b8865cc09498469b369f620f086fd /bot/monkey_patches.py | |
parent | Merge Epoch Command (PR #983) (diff) |
Change single quote to double quote.
This trivial change is actually to try and reproduce a bug we had with our GitHub actions.
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..36708415 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): |