Round file size in output

This commit is contained in:
Nexus 2023-04-27 11:17:28 +01:00
parent fe6722bb42
commit febdfbd03c
Signed by: nex
GPG key ID: 0FA334385D0B689F

View file

@ -819,7 +819,7 @@ class OtherCog(commands.Cog):
"\t- Extension: {0[ext]}\n"
"\t- Protocol: {0[protocol]}\n"
"\t- Resolution: {0[resolution]}\n"
"\t- Size: {1}MB".format(fmt, fmt["filesize"] / 1024 ** 2)
"\t- Size: {1}MB".format(fmt, round(fmt["filesize"] / 1024 ** 2, 1))
)
await ctx.edit(content="Invalid format. Available formats:")
for page in paginator.pages: