From 5b1d8d64f2153ae85a339fdaf8701d9b835802f5 Mon Sep 17 00:00:00 2001 From: Roland Dobai Date: Tue, 11 Sep 2018 13:11:04 +0200 Subject: [PATCH] idf.py: Make the lambda function Python 2 & 3 compatible --- tools/idf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/idf.py b/tools/idf.py index bb55ff59eb..e3fc8816f3 100755 --- a/tools/idf.py +++ b/tools/idf.py @@ -338,7 +338,8 @@ def print_closing_message(args): cmd += flasher_path(flasher_args[key]["file"]) else: # flashing the whole project cmd = " ".join(flasher_args["write_flash_args"]) + " " - flash_items = sorted((o,f) for (o,f) in flasher_args["flash_files"].items() if len(o) > 0) + flash_items = sorted(((o,f) for (o,f) in flasher_args["flash_files"].items() if len(o) > 0), + key = lambda x: int(x[0], 0)) for o,f in flash_items: cmd += o + " " + flasher_path(f) + " "