summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2011-12-28 19:39:17 +0000
committercliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2011-12-28 19:39:17 +0000
commitfc790a208222f193394d889e985b4e2d25d8057b (patch)
tree47f7525aeca4172cdb4ce8be219e1e94be9c2fb0
parent7ecf129293489d1389a3af982b1f543dad90203d (diff)
downloadpyserial-fc790a208222f193394d889e985b4e2d25d8057b.tar.gz
fix SF 3462364, "base" not defined
git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@440 f19166aa-fa4f-0410-85c2-fa1106f25c8a
-rw-r--r--CHANGES.txt7
-rw-r--r--serial/tools/list_ports_posix.py3
2 files changed, 8 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 06e9621..c2d6786 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -434,5 +434,10 @@ Bugfixes (win32):
- Fix type definitions for 64 bit Windows compatibility
-Version 2.7 2010-nn-nn
+Version 2.7 2012-nn-nn
---------------------------
+
+Bugfixes (posix):
+
+- [Patch 3462364] Fix: NameError: global name 'base' is not defined
+
diff --git a/serial/tools/list_ports_posix.py b/serial/tools/list_ports_posix.py
index 8d2357e..d5b3e42 100644
--- a/serial/tools/list_ports_posix.py
+++ b/serial/tools/list_ports_posix.py
@@ -64,7 +64,8 @@ if plat[:5] == 'linux': # Linux (confirmed)
)
def usb_lsusb_string(sysfs_path):
- bus, dev = os.path.basename(os.path.realpath(sysfs_path)).split('-')
+ base = os.path.basename(os.path.realpath(sysfs_path))
+ bus, dev = base.split('-')
try:
desc = popen(['lsusb', '-v', '-s', '%s:%s' % (bus, dev)])
# descriptions from device