Fixed ljust placement

This commit is contained in:
Dionysus 2023-06-25 02:57:59 -04:00
parent 36fce2ff81
commit cdc15eecd8
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
1 changed files with 1 additions and 1 deletions

View File

@ -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]