Skip to content

Commit 55f1cbd

Browse files
Cleanup
1 parent b29cf04 commit 55f1cbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymysqlreplication/packet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def __init__(self, from_packet, table_map, ctl_connection):
6868
self.event_size = struct.unpack('<I', self.packet.read(4))[0]
6969
# position of the next event
7070
self.log_pos = struct.unpack('<I', self.packet.read(4))[0]
71-
self.flags = self.flags = struct.unpack('<H', self.packet.read(2))[0]
71+
self.flags = struct.unpack('<H', self.packet.read(2))[0]
7272

7373
event_size_without_header = self.event_size - 19
7474

0 commit comments

Comments
 (0)