Minor formatting change.

This commit is contained in:
Marat Fayzullin 2023-05-25 15:14:47 -04:00
parent 89020616a7
commit 5f53b8ff02
1 changed files with 2 additions and 2 deletions

View File

@ -214,9 +214,9 @@ class SelCallParser(MultimonParser):
dec = s
elif dec is not None and len(s)>0:
if dec != self.mode:
out += " [" + dec + "]"
out += "[" + dec + "] "
self.mode = dec
out += " " + s
out += s + " "
dec = None
# Done
return out