mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Minor format fix post-removal of the %c type colors
This commit is contained in:
parent
a2500389e4
commit
9b6343f813
1 changed files with 1 additions and 1 deletions
|
|
@ -751,7 +751,7 @@ class CmdServerLoad(MuxCommand):
|
|||
total_num, cachedict = _IDMAPPER.cache_size()
|
||||
sorted_cache = sorted([(key, num) for key, num in cachedict.items() if num > 0],
|
||||
key=lambda tup: tup[1], reverse=True)
|
||||
memtable = EvTable("entity name", "number", "idmapper %%", align="l")
|
||||
memtable = EvTable("entity name", "number", "idmapper %", align="l")
|
||||
for tup in sorted_cache:
|
||||
memtable.add_row(tup[0], "%i" % tup[1], "%.2f" % (float(tup[1]) / total_num * 100))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue