mirror of
https://github.com/myned/modufur.git
synced 2024-11-01 13:02:38 +00:00
Fix formatting logic
This commit is contained in:
parent
eab73cb62b
commit
c223eb82ed
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ async def paginate(
|
|||
if not i:
|
||||
i = {' ': ' '}
|
||||
for k, e in sorted(i.items()):
|
||||
paginator.add_line(kprefix if k else '' + k + ksuffix if k else '' + eprefix + f'{ejoin}'.join(e) + esuffix)
|
||||
paginator.add_line(kprefix + k + ksuffix + eprefix + f'{ejoin}'.join(e) + esuffix)
|
||||
|
||||
if end:
|
||||
paginator.add_line(end)
|
||||
|
|
Loading…
Reference in a new issue