1
0
Fork 0

Improve display.

This commit is contained in:
Max Neunhoeffer 2014-02-25 14:24:09 +01:00
parent 5f15e04edc
commit 8a41a53dc5
2 changed files with 2 additions and 2 deletions

View File

@ -26,6 +26,6 @@ function main (argv) {
}
var l = r.runInfo[j];
for (i = 0;i < l.endpoints.length;i++) {
print(" " + l.roles[i] + ":" + l.endpoints[i]);
print(" " + l.roles[i] + ": " + l.endpoints[i]);
}
}

View File

@ -21,6 +21,6 @@ function main (argv) {
}
var l = r.runInfo[j];
for (i = 0;i < l.endpoints.length;i++) {
print(" " + l.roles[i] + ":" + l.endpoints[i]);
print(" " + l.roles[i] + ": " + l.endpoints[i]);
}
}