aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Momo <[email protected]>2018-07-05 22:03:09 +0000
committerGravatar Momo <[email protected]>2018-07-05 22:03:09 +0000
commit9cd4bdbf19b084bd71fbb71019cb6c025907a4dd (patch)
tree5030fbc03a093d32c729cf018fbcbd5ce94a0d6f
parentFix typo in rejection message (diff)
Fix incorrect log line
-rw-r--r--bot/cogs/defcon.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/defcon.py b/bot/cogs/defcon.py
index dc23fd3dc..ea50bdf63 100644
--- a/bot/cogs/defcon.py
+++ b/bot/cogs/defcon.py
@@ -63,7 +63,7 @@ class Defcon:
now = datetime.utcnow()
if now - member.created_at < self.days:
- log.info(f"Rejecting user {member}: Account is too old and DEFCON is enabled")
+ log.info(f"Rejecting user {member}: Account is too new and DEFCON is enabled")
try:
await member.send(REJECTION_MESSAGE.format(user=member.mention))