diff options
author | 2024-04-06 16:45:57 +0200 | |
---|---|---|
committer | 2024-04-06 16:45:57 +0200 | |
commit | f686da5c09c98f02ae8f802057359dd1d9f117d7 (patch) | |
tree | cd64e453dd7477a04b2c3397249a00f8aa4e4031 | |
parent | Bump sentry-sdk from 1.44.0 to 1.44.1 (#3002) (diff) | |
parent | Merge 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.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): |