From 5c64e5090ee9ad38b6510ed616ef0c4907272586 Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Thu, 9 Jul 2020 14:23:02 +0800 Subject: [PATCH] idf monitor: fix crash when monitor baudrate argument set Closes IDF-1902 --- tools/idf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/idf.py b/tools/idf.py index 430f1ce0ba..b4ea9bead8 100755 --- a/tools/idf.py +++ b/tools/idf.py @@ -90,6 +90,7 @@ def _run_tool(tool_name, args, cwd): return "'" + arg + "'" return arg + args = [str(arg) for arg in args] display_args = " ".join(quote_arg(arg) for arg in args) print("Running %s in directory %s" % (tool_name, quote_arg(cwd))) print('Executing "%s"...' % str(display_args))