summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.txt1
-rw-r--r--serial/tools/list_ports_posix.py5
2 files changed, 4 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 5878280..4945c15 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -458,6 +458,7 @@ Bugfixes (posix):
- [Bug 3518380] python3.2 -m serial.tools.list_ports error
- [Bug pyserial:137] Patch to add non-standard baudrates to Cygwin
- [Bug pyserial:141] open: Pass errno from IOError to SerialException
+- [Bug pyserial:125] Undefined 'base' on list_ports_posix.py, function usb_lsusb
Bugfixes (win32):
diff --git a/serial/tools/list_ports_posix.py b/serial/tools/list_ports_posix.py
index 974c037..3e2da72 100644
--- a/serial/tools/list_ports_posix.py
+++ b/serial/tools/list_ports_posix.py
@@ -68,9 +68,10 @@ if plat[:5] == 'linux': # Linux (confirmed)
)
def usb_lsusb_string(sysfs_path):
- base = os.path.basename(os.path.realpath(sysfs_path))
- bus, dev = base.split('-')
+ base = os.path.basename(os.path.realpath(sysfs_path))
+ bus = base.split('-')[0]
try:
+ dev = int(open(os.path.join(sysfs_path, 'devnum')).readline().strip())
desc = popen(['lsusb', '-v', '-s', '%s:%s' % (bus, dev)])
# descriptions from device
iManufacturer = re_group('iManufacturer\s+\w+ (.+)', desc)