diff options
author | 2024-03-29 20:39:30 +0800 | |
---|---|---|
committer | 2024-03-29 20:39:30 +0800 | |
commit | d757301be9d04054583f3d6e6e8f682f37cdca95 (patch) | |
tree | 4c4559654c4b04bad1ff5704017a092c59b8b2bf | |
parent | Bump markdownify from 0.11.6 to 0.12.1 (#2983) (diff) |
Reference the /tag slash-command instead in tags listing
-rw-r--r-- | bot/exts/info/tags.py | 2 |
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): |