aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar SebastiaanZ <[email protected]>2019-02-04 17:43:42 +0100
committerGravatar SebastiaanZ <[email protected]>2019-02-04 17:43:42 +0100
commitef390d8c1bc89f32156aa6c684cc3d9846dbfc2f (patch)
tree55f510c9c424b495d3b0b95647f0a66d15908107
parentMerge pull request #296 from python-discord/redirect-decorator-handling-delet... (diff)
Rewording token removal text to send a stronger message.
-rw-r--r--bot/cogs/token_remover.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/cogs/token_remover.py b/bot/cogs/token_remover.py
index c1a0e18ba..ffc92fe45 100644
--- a/bot/cogs/token_remover.py
+++ b/bot/cogs/token_remover.py
@@ -17,9 +17,9 @@ log = logging.getLogger(__name__)
DELETION_MESSAGE_TEMPLATE = (
"Hey {mention}! I noticed you posted a seemingly valid Discord API "
"token in your message and have removed your message. "
- "We **strongly recommend** regenerating your token as it's probably "
- "been compromised. You can do that here: "
- "<https://discordapp.com/developers/applications/me>\n"
+ "This means that your token has more than likely been **compromised**. "
+ "Please change your token **immediately** at: "
+ "<https://discordapp.com/developers/applications/me>\n\n"
"Feel free to re-post it with the token removed. "
"If you believe this was a mistake, please let us know!"
)