From b52fe52d31aaa5f127586173bfea29d03d1e798d Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 2 Nov 2022 14:06:18 +1100 Subject: [PATCH] tools/makemanifest.py: Fix printing of mpy_cross.CrossCompileError. This change was missed by 5852fd7708d02d6ca85e4a5ed01d8263e3962631 Signed-off-by: Damien George --- tools/makemanifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/makemanifest.py b/tools/makemanifest.py index b2e4f7d844..a74a6934ae 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)