Commit ce3677f 1 parent 7e58750 commit ce3677f Copy full SHA for ce3677f
File tree 3 files changed +11
-3
lines changed
3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## 0.1.2
4
+
5
+ Released on December 20, 2020
6
+
7
+ ### Changed
8
+
9
+ * More Python 3 fixes (fixed TypeError)
10
+
3
11
## 0.1.1
4
12
5
13
Released on December 20, 2020
Original file line number Diff line number Diff line change @@ -77,8 +77,8 @@ class RFIDClient(object):
77
77
78
78
# these bytes form the packet that starts a transaction with the RFID controller
79
79
start_transaction = (
80
- "\r \r \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 "
81
- "\x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 "
80
+ b "\r \r \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 "
81
+ b "\x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 "
82
82
)
83
83
84
84
def __init__ (self , ip , serial ):
Original file line number Diff line number Diff line change 9
9
10
10
setup (
11
11
name = 'Chinese-RFID-Access-Control-Library' ,
12
- version = '0.1.1 ' ,
12
+ version = '0.1.2 ' ,
13
13
description = 'A library for interfacing with one of the most common RFID Access Control System sold in China.' ,
14
14
long_description = readme ,
15
15
long_description_content_type = 'text/markdown' ,
You can’t perform that action at this time.
0 commit comments