Codebase list python-yubico / a72e8ed
Prepare 1.3.3 Dain Nilsson 5 years ago
3 changed file(s) with 5 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
0 * Version 1.3.3 (released 2019-02-28)
1 ** Fixes in Python 3 compatibility.
2
03 * Version 1.3.2 (released 2016-02-23)
14 ** Various fixes to sequence number checking.
25 ** Fix issue with using an access code with the debug flag on.
0 __version__ = "1.3.2"
0 __version__ = "1.3.3"
135135 try:
136136 if self._usb_handle:
137137 self._close()
138 except IOError:
138 except (IOError, AttributeError):
139139 pass
140140
141141 def _write_config(self, cfg, slot):