mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix #1929465 [Plucker code Python 2 issues](https://bugs.launchpad.net/calibre/+bug/1929465)
This commit is contained in:
parent
b9899d94ef
commit
2c802b7839
@ -147,8 +147,8 @@ class SectionHeader(object):
|
||||
self.uid, = struct.unpack('>H', raw[0:2])
|
||||
self.paragraphs, = struct.unpack('>H', raw[2:4])
|
||||
self.size, = struct.unpack('>H', raw[4:6])
|
||||
self.type, = struct.unpack('>B', raw[6])
|
||||
self.flags, = struct.unpack('>B', raw[7])
|
||||
self.type, = struct.unpack('>B', raw[6:7])
|
||||
self.flags, = struct.unpack('>B', raw[7:8])
|
||||
|
||||
|
||||
class SectionHeaderText(object):
|
||||
|
Loading…
x
Reference in New Issue
Block a user