stop accidentally flipping list

This commit is contained in:
Nexus 2023-03-16 23:39:48 +00:00
parent 5d76608bb6
commit de8550ee84

View file

@ -860,7 +860,7 @@ class OtherCog(commands.Cog):
if os.path.exists(target_fn):
last_3_sizes.pop(0)
last_3_sizes.append(os.stat(target_fn).st_size)
_bot.console.log(f"File {target_fn} size: {last_3_sizes.reverse()}")
_bot.console.log(f"File {target_fn} size: {last_3_sizes}")
else:
_bot.console.log(f"File {target_fn} does not exist")
sleep(3)