fix missing space in `block_sim` output (#6134)

In #5906, the `strformat` use was replaced with simply passing the parts
of the string as `varargs` to `echo`. A space got lost from output as
part of the transformation. Re-add it.
This commit is contained in:
Etan Kissling 2024-03-25 20:26:14 +01:00 committed by GitHub
parent 2dbe24c740
commit 9ad8ea0f7a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -490,7 +490,7 @@ cli do(slots = SLOTS_PER_EPOCH * 7,
verifyConsensus(dag.headState, attesterRatio * blockRatio)
if t == tEpoch:
echo ". slot: ", shortLog(slot), "epoch: ", shortLog(slot.epoch)
echo ". slot: ", shortLog(slot), " epoch: ", shortLog(slot.epoch)
else:
try:
write(stdout, ".")