diff --git a/jarvis/cogs/image.py b/jarvis/cogs/image.py index ec98541..e2d99c8 100644 --- a/jarvis/cogs/image.py +++ b/jarvis/cogs/image.py @@ -75,7 +75,7 @@ class ImageCog(commands.Cog): accuracy = (len(file) / tgt_size) * 100 await ctx.send( "New size: {}".format(convert_bytesize(len(file))) - + "\nAccuracy: {}".format(accuracy), + + "\nAccuracy: {:0.2f}%".format(accuracy), file=File(bufio, filename="resized.png"), )