8000 run-console.py: Improved output · steeltrack/AbletonOSC@d55400d · GitHub
[go: up one dir, main page]

Skip to content

Commit

Permalink
run-console.py: Improved output
Browse files Browse the repository at this point in the history
  • Loading branch information
ideoforms committed Nov 19, 2023
1 parent 7bed4e9 commit d55400d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion run-console.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ def main(args):
pass
params.append(part)
try:
print(client.query(command, params))
rv = client.query(command, params)
rv = ", ".join(str(part) for part in rv)
print(rv)
except RuntimeError:
pass

Expand Down

0 comments on commit d55400d

Please sign in to comment.
0