diff --git a/evennia/commands/default/system.py b/evennia/commands/default/system.py index ef3adda200..fe1ec1e0ea 100644 --- a/evennia/commands/default/system.py +++ b/evennia/commands/default/system.py @@ -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))