File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -255,9 +255,9 @@ def run(self):
255
255
# the frames received queue
256
256
# is full
257
257
pass
258
- except FCSError :
258
+ except FCSError as e :
259
259
with self .send_lock :
260
- self .__send_nack (seq_no )
260
+ self .__send_nack (e . args [ 0 ] )
261
261
except TypeError :
262
262
# Generally, raised when an
263
263
# HDLC frame with a bad frame
Original file line number Diff line number Diff line change 5
5
from codecs import open
6
6
7
7
DIR = dirname (abspath (__file__ ))
8
- VERSION = '0.3.1 '
8
+ VERSION = '0.3.2 '
9
9
10
10
with open (join (DIR , 'README.rst' ), encoding = 'utf-8' ) as f :
11
11
long_description = f .read ()
34
34
],
35
35
py_modules = ['hdlcontroller' ],
36
36
scripts = ['hdlcontroller.py' ],
37
- install_requires = ['python4yahdlc>=1.0.2 ' , 'pyserial' ],
37
+ install_requires = ['python4yahdlc>=1.1.0 ' , 'pyserial' ],
38
38
test_suite = 'test' ,
39
39
)
You can’t perform that action at this time.
0 commit comments