From af68c2950f713aa0a3d76aa743b802d24e5a652b Mon Sep 17 00:00:00 2001 From: acidvegas Date: Wed, 28 Jun 2023 16:07:44 -0400 Subject: [PATCH] Fixed settings alignment in .ascii settings output --- scroll.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scroll.py b/scroll.py index 563411b..fa1c11b 100644 --- a/scroll.py +++ b/scroll.py @@ -317,7 +317,7 @@ class Bot(): elif args[1] == 'settings': if len(args) == 2: for item in self.settings: - await self.sendmsg(chan, color(item.ljust(10), yellow) + color(str(self.settings[item]), grey)) + await self.sendmsg(chan, color(item.ljust(15), yellow) + color(str(self.settings[item]), grey)) elif len(args) == 4 and is_admin(ident): setting = args[2] option = args[3]