Unverified Commit 930e25e9 authored by Antoine Kaufmann's avatar Antoine Kaufmann
Browse files

symphony/client: fix output indexing

parent e3dc66e8
......@@ -338,7 +338,7 @@ class SimBricksClient:
console.log(f"Run State:", run["state"])
if len(output) != prev_len:
for l in output[prev_len]:
for l in output[prev_len:]:
console.log(l["simulator"] + ':' + l["output"])
prev_len = len(output)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment