idf monitor: fix crash when monitor baudrate argument set

Closes IDF-1902
This commit is contained in:
Marius Vikhammer
2020-07-09 14:23:02 +08:00
parent 5da526a0cb
commit 30f075f0bb
2 changed files with 2 additions and 1 deletions

View File

@@ -27,7 +27,7 @@ def action_extensions(base_actions, project_path):
ports[0].encode("ascii", "ignore"))
return ports[0]
except IndexError:
raise RuntimeError(
raise FatalError(
"No serial ports found. Connect a device, or use '-p PORT' option to set a specific port.")
def _get_esptool_args(args):