Skip to content

Commit d1decdf

Browse files
lurchdpgeorge
authored andcommitted
tools/mpremote: Swap order of PID and VID in connect-list output.
Fixes issue adafruit#7481.
1 parent 076caf3 commit d1decdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/mpremote/mpremote/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def do_connect(args):
166166
for p in sorted(serial.tools.list_ports.comports()):
167167
print(
168168
"{} {} {:04x}:{:04x} {} {}".format(
169-
p.device, p.serial_number, p.pid, p.vid, p.manufacturer, p.product
169+
p.device, p.serial_number, p.vid, p.pid, p.manufacturer, p.product
170170
)
171171
)
172172
return None

0 commit comments

Comments
 (0)