From de8550ee842c047adfde7e988aa39cc8e216348a Mon Sep 17 00:00:00 2001 From: nex Date: Thu, 16 Mar 2023 23:39:48 +0000 Subject: [PATCH] stop accidentally flipping list --- cogs/other.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/other.py b/cogs/other.py index c7e0646..29f55a4 100644 --- a/cogs/other.py +++ b/cogs/other.py @@ -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)