aboutsummaryrefslogtreecommitdiffstats
path: root/bot/monkey_patches.py
diff options
context:
space:
mode:
authorGravatar ChrisJL <[email protected]>2022-01-08 22:46:21 +0000
committerGravatar GitHub <[email protected]>2022-01-08 22:46:21 +0000
commitd30ca55460b387f521e593b31688161e6df4618b (patch)
tree62513cea21cc9a7f23e17406dc3e9bef61544ba6 /bot/monkey_patches.py
parentMerge Epoch Command (PR #983) (diff)
parentRemove trailing whitespace (diff)
Merge pull request #1006 from python-discord/fix-single-quotes
Diffstat (limited to 'bot/monkey_patches.py')
-rw-r--r--bot/monkey_patches.py2
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):