diff options
| author | 2019-02-04 17:31:17 +0000 | |
|---|---|---|
| committer | 2019-02-04 17:31:17 +0000 | |
| commit | 43009328faf0a511b979b61684164489a962d50b (patch) | |
| tree | 324dfa85c38a3d46b2a6af969aa5297b86b84198 | |
| parent | Merge pull request #296 from python-discord/redirect-decorator-handling-delet... (diff) | |
| parent | Removing the 'more than likely' (diff) | |
Merge pull request #302 from python-discord/stronger-token-removal-message
Sending a stronger message to the user after removing token
| -rw-r--r-- | bot/cogs/token_remover.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/cogs/token_remover.py b/bot/cogs/token_remover.py index c1a0e18ba..05298a2ff 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 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!" ) |