Commit d1decdfa authored by Andrew Scheller's avatar Andrew Scheller Committed by Damien George

tools/mpremote: Swap order of PID and VID in connect-list output.

Fixes issue #7481.
parent 076caf31
......@@ -166,7 +166,7 @@ def do_connect(args):
for p in sorted(serial.tools.list_ports.comports()):
print(
"{} {} {:04x}:{:04x} {} {}".format(
p.device, p.serial_number, p.pid, p.vid, p.manufacturer, p.product
p.device, p.serial_number, p.vid, p.pid, p.manufacturer, p.product
)
)
return None
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment