"git@developer.sourcefind.cn:gaoqiong/yaml-cpp.git" did not exist on "9880b608b931dd83363016914988367ca1212d49"
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: ...@@ -338,7 +338,7 @@ class SimBricksClient:
console.log(f"Run State:", run["state"]) console.log(f"Run State:", run["state"])
if len(output) != prev_len: if len(output) != prev_len:
for l in output[prev_len]: for l in output[prev_len:]:
console.log(l["simulator"] + ':' + l["output"]) console.log(l["simulator"] + ':' + l["output"])
prev_len = len(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