1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- a/lsusb.py.in 2019-05-07 16:35:51.000000000 +0200
+++ b/lsusb.py.in 2019-08-15 19:15:29.010497407 +0200
@@ -67,7 +67,7 @@
return type('MyEnum', (), enums)
def parse_usb_ids():
- "Parse /usr/share/usb.ids and fill usbvendors, usbproducts, usbclasses"
+ "Parse /usr/share/hwdata/usb.ids and fill usbvendors, usbproducts, usbclasses"
vid = 0
did = 0
modes = myenum('Vendor', 'Class', 'Misc')
@@ -463,7 +463,7 @@
print(" -C, --no-color disable colors")
print(" -e, --endpoints display endpoint info")
print(" -f FILE, --usbids-path FILE")
- print(" override filename for /usr/share/usb.ids")
+ print(" override filename for /usr/share/hwdata/usb.ids")
print()
print("Use lsusb.py -ciu to get a nice overview of your USB devices.")
|