Minor format fix post-removal of the %c type colors

This commit is contained in:
Griatch 2015-05-17 21:59:24 +02:00
parent a2500389e4
commit 9b6343f813

View file

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