diff options
Diffstat (limited to 'salis.py')
| -rwxr-xr-x | salis.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -302,7 +302,8 @@ if args.command in ["bench", "new"] and args.anc is not None: if not found: error("Unrecognized instruction in ancestor file:", line) - info(f"Compiled ancestor file '{anc_path}' into byte array:", anc_bytes) + anc_repr = f"[{','.join(map(str, anc_bytes))}]" + info(f"Compiled ancestor file '{anc_path}' into byte array:", anc_repr) # ------------------------------------------------------------------------------ # Emit C source |
