diff options
| author | Damien George <damien@micropython.org> | 2022-11-02 14:06:18 +1100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2022-11-02 14:06:18 +1100 |
| commit | b52fe52d31aaa5f127586173bfea29d03d1e798d (patch) | |
| tree | 1bfafc1e188e85f5feed0a0412c5ad0c12d19e68 | |
| parent | 46bb52adf6822684942d760dc09fdc893a411cdc (diff) | |
tools/makemanifest.py: Fix printing of mpy_cross.CrossCompileError.
This change was missed by 5852fd7708d02d6ca85e4a5ed01d8263e3962631
Signed-off-by: Damien George <damien@micropython.org>
| -rw-r--r-- | tools/makemanifest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/makemanifest.py b/tools/makemanifest.py index b2e4f7d84..a74a6934a 100644 --- a/tools/makemanifest.py +++ b/tools/makemanifest.py @@ -204,7 +204,7 @@ def main(): extra_args=args.mpy_cross_flags.split(), ) except mpy_cross.CrossCompileError as ex: - print("error compiling {}:".format(target_path)) + print("error compiling {}:".format(result.target_path)) print(ex.args[0]) raise SystemExit(1) ts_outfile = get_timestamp(outfile) |
