scroll

- irc bot to play ascii art
git clone git://git.acid.vegas/scroll.git
Log | Files | Refs | Archive | README | LICENSE

commit cdc15eecd8fa47df1e7afb839e591e5bec0a1108
parent 36fce2ff816e9cd4d544440605fe595573bfbd83
Author: acidvegas <acid.vegas@acid.vegas>
Date: Sun, 25 Jun 2023 02:57:59 -0400

Fixed ljust placement

Diffstat:
Mscroll.py | 2+-

1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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]