diff options
| -rw-r--r-- | bot/exts/info/information.py | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/exts/info/information.py b/bot/exts/info/information.py index 92ddf0fbd..c54ca96bf 100644 --- a/bot/exts/info/information.py +++ b/bot/exts/info/information.py @@ -64,7 +64,8 @@ class Information(Cog):          defcon_info = ""          if cog := self.bot.get_cog("Defcon"): -            defcon_info = f"Defcon threshold: {humanize_delta(cog.threshold)}\n" +            threshold = humanize_delta(cog.threshold) if cog.threshold else "-" +            defcon_info = f"Defcon threshold: {threshold}\n"          verification = f"Verification level: {ctx.guild.verification_level.name}\n"  |