mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 16:54:28 +02:00
Fix HUFF/CDIC decompression regression.
This commit is contained in:
parent
b28b734354
commit
d7c3df5f43
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ def left(self):
|
|||
|
||||
class HuffReader(object):
|
||||
|
||||
def __init__(self, huffs, extra_flags):
|
||||
def __init__(self, huffs):
|
||||
self.huffs = huffs
|
||||
|
||||
if huffs[0][0:4] != 'HUFF' or huffs[0][4:8] != '\x00\x00\x00\x18':
|
||||
|
|
|
|||
Loading…
Reference in a new issue