diff options
| -rw-r--r-- | bot/exts/utils/ping.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utils/ping.py b/bot/exts/utils/ping.py index f26817159..ea67a7b16 100644 --- a/bot/exts/utils/ping.py +++ b/bot/exts/utils/ping.py @@ -32,7 +32,7 @@ class Latency(commands.Cog):          # datetime.datetime objects do not have the "milliseconds" attribute.          # It must be converted to seconds before converting to milliseconds.          bot_ping = (datetime.utcnow() - ctx.message.created_at).total_seconds() / 1000 -        bot_ping = f"{round(bot_ping, ROUND_LATENCY)} ms" +        bot_ping = f"{bot_ping:.{ROUND_LATENCY}f} ms"          try:              delay = await aioping.ping(URLs.site, family=socket.AddressFamily.AF_INET) * 1000  |