This commit is contained in:
2019-07-10 12:35:02 +02:00
parent b179b4de76
commit 57c2c7251d

View File

@ -216,7 +216,7 @@ class CmdInterpreter(cmd.Cmd):
ratio = None
else:
ratio = float(r.errorCount) / float(r.processCount)
self.__println("#{0:2d}: {1:10s} ({2:2d}, {3:5d}), pc: {4:7d}, ec: {5:7d}, q: {6:1.4f}"
self.__println("#{0:2d}: {1:15s} ({2:2d}, {3:5d}), pc: {4:7d}, ec: {5:7d}, q: {6:1.4f}"
.format(i, r.label, r.unit, r.address,
r.processCount, r.errorCount, ratio))