mirror of
git://git.acid.vegas/scroll.git
synced 2024-11-07 08:46:45 +00:00
Fixed ljust placement
This commit is contained in:
parent
36fce2ff81
commit
cdc15eecd8
@ -270,7 +270,7 @@ class Bot():
|
|||||||
elif args[1] == 'settings':
|
elif args[1] == 'settings':
|
||||||
if len(args) == 2:
|
if len(args) == 2:
|
||||||
for item in self.settings:
|
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):
|
elif len(args) == 4 and is_admin(ident):
|
||||||
setting = args[2]
|
setting = args[2]
|
||||||
option = args[3]
|
option = args[3]
|
||||||
|
Loading…
Reference in New Issue
Block a user