Skip to content

Commit

Permalink
Merge branch 'fix_port_detect' into 'master'
Browse files Browse the repository at this point in the history
Quick fix: port detection filter

See merge request espressif/esp-idf-monitor!68
  • Loading branch information
peterdragun committed Aug 13, 2024
2 parents d25da33 + ab69d4d commit 4535e7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp_idf_monitor/base/serial_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def run(self):
[
p.device
for p in list_ports.comports()
if not p.endswith(FILTERED_PORTS)
if not p.device.endswith(FILTERED_PORTS)
]
)
yellow_print(f'Connection to {self.serial.portstr} failed. Available ports:\n{port_list}')
Expand Down

0 comments on commit 4535e7f

Please sign in to comment.