From cdc15eecd8fa47df1e7afb839e591e5bec0a1108 Mon Sep 17 00:00:00 2001 From: acidvegas Date: Sun, 25 Jun 2023 02:57:59 -0400 Subject: [PATCH] Fixed ljust placement --- scroll.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scroll.py b/scroll.py index 438144c..9e3d70a 100644 --- a/scroll.py +++ b/scroll.py @@ -270,7 +270,7 @@ class Bot(): elif args[1] == 'settings': if len(args) == 2: for item in self.settings: - await self.sendmsg(chan, color(item, yellow).ljust(10) + color(str(self.settings[item]), grey)) + await self.sendmsg(chan, color(item.ljust(10), yellow) + color(str(self.settings[item]), grey)) elif len(args) == 4 and is_admin(ident): setting = args[2] option = args[3]