aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar jchristgit <[email protected]>2024-04-06 16:45:57 +0200
committerGravatar GitHub <[email protected]>2024-04-06 16:45:57 +0200
commitf686da5c09c98f02ae8f802057359dd1d9f117d7 (patch)
treecd64e453dd7477a04b2c3397249a00f8aa4e4031
parentBump sentry-sdk from 1.44.0 to 1.44.1 (#3002) (diff)
parentMerge branch 'main' into fix/tags-list-footer (diff)
Merge pull request #2987 from python-discord/fix/tags-list-footer
Reference the `/tag` slash-command instead of the old `!tags` in the footer of tags listings
-rw-r--r--bot/exts/info/tags.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/tags.py b/bot/exts/info/tags.py
index 42ac38be6..56a2f044c 100644
--- a/bot/exts/info/tags.py
+++ b/bot/exts/info/tags.py
@@ -25,7 +25,7 @@ TEST_CHANNELS = (
)
REGEX_NON_ALPHABET = re.compile(r"[^a-z]", re.MULTILINE & re.IGNORECASE)
-FOOTER_TEXT = f"To show a tag, type {constants.Bot.prefix}tags <tagname>."
+FOOTER_TEXT = "To show a tag, use /tag <tagname>."
class COOLDOWN(enum.Enum):