diff options
| author | 2020-05-13 19:18:50 -0700 | |
|---|---|---|
| committer | 2020-05-13 19:18:50 -0700 | |
| commit | ab44bb38d874dfdec9d7dc61bbf13b06144b9a0e (patch) | |
| tree | a24b7cd2a95294045ef00c1a4050748d9a0b892a | |
| parent | Fix a test needlessly being a coroutine (diff) | |
Add missing comma to token remover log message
| -rw-r--r-- | bot/cogs/token_remover.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/token_remover.py b/bot/cogs/token_remover.py index c576a67d0..c57e7764e 100644 --- a/bot/cogs/token_remover.py +++ b/bot/cogs/token_remover.py @@ -17,7 +17,7 @@ from bot.constants import Channels, Colours, Event, Icons log = logging.getLogger(__name__) LOG_MESSAGE = ( - "Censored a seemingly valid token sent by {author} (`{author_id}`) in {channel}," + "Censored a seemingly valid token sent by {author} (`{author_id}`) in {channel}, " "token was `{user_id}.{timestamp}.{hmac}`" ) DELETION_MESSAGE_TEMPLATE = ( |