scroll- irc bot to play ascii art |
git clone git://git.acid.vegas/scroll.git |
Log | Files | Refs | Archive | README | LICENSE |
commit af68c2950f713aa0a3d76aa743b802d24e5a652b
parent 7cf2a8355e5192619c9588f3ff656d321e961750 Author: acidvegas <acid.vegas@acid.vegas> Date: Wed, 28 Jun 2023 16:07:44 -0400 Fixed settings alignment in .ascii settings output Diffstat:
|
1 file changed, 1 insertion(+), 1 deletion(-) |
diff --git 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] |