File tree 4 files changed +8
-2
lines changed
4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
========================
2
2
pyMagnum Release Notes
3
3
========================
4
+ Version 1.1.3 2020/07/12
5
+ -----------------------
6
+ - Fixed issue #13 leaving port open when no network detected
7
+
4
8
Version 1.1.2 2020/06/17
5
9
------------------------
6
10
- Fixed error in 'running' status for AGS device
Original file line number Diff line number Diff line change 22
22
author = 'Charles Godwin'
23
23
24
24
# The full version, including alpha/beta/rc tags
25
- release = '1.1.2 '
25
+ release = '1.1.3 '
26
26
27
27
# -- General configuration ---------------------------------------------------
28
28
Original file line number Diff line number Diff line change 3
3
#
4
4
# SPDX-License-Identifier: BSD-3-Clause
5
5
#
6
- __version__ = "1.1.2 "
6
+ __version__ = "1.1.3 "
Original file line number Diff line number Diff line change @@ -213,6 +213,8 @@ def readPackets(self):
213
213
#
214
214
time .sleep (0.25 )
215
215
if self .reader .inWaiting () == 0 :
216
+ self .reader .close ()
217
+ self .reader = None
216
218
raise ConnectionError ("There doesn't seem to be a network" )
217
219
packetsleft = self .packetcount
218
220
self .reader .flushInput ()
You can’t perform that action at this time.
0 commit comments