summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2005-01-15 21:00:48 +0000
committercliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2005-01-15 21:00:48 +0000
commita6a1e7db07f65644f4c84c9d5133c602add31d73 (patch)
treee5d7ddd557f8f3c70a5d489749f3f2c6eab3a1fd
parent4a124e150b3451b84efb8966951ee66bf8cf4e5c (diff)
downloadpyserial-a6a1e7db07f65644f4c84c9d5133c602add31d73.tar.gz
fix missing import [Bug 1085599]
git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk@130 f19166aa-fa4f-0410-85c2-fa1106f25c8a
-rw-r--r--pyserial/serial/serialposix.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyserial/serial/serialposix.py b/pyserial/serial/serialposix.py
index d3bbc26..7f96714 100644
--- a/pyserial/serial/serialposix.py
+++ b/pyserial/serial/serialposix.py
@@ -10,10 +10,10 @@
# ftp://ftp.visi.com/users/grante/python/PosixSerial.py
# references: http://www.easysw.com/~mike/serial/serial.html
-import sys, os, fcntl, termios, struct, select
+import sys, os, fcntl, termios, struct, select, errno
from serialutil import *
-VERSION = "$Revision: 1.25 $".split()[1] #extract CVS version
+VERSION = "$Revision: 1.26 $".split()[1] #extract CVS version
#Do check the Python version as some constants have moved.
if (sys.hexversion < 0x020100f0):