From 56fe8dd6573b416616480b22abdb90d471483f3e Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Tue, 12 Jan 2021 17:09:24 -0600 Subject: [PATCH] chromagnon ONLY WORKS on WIN--different on Mac & Linux. --- fanficfare/chromagnon/cacheBlock.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fanficfare/chromagnon/cacheBlock.py b/fanficfare/chromagnon/cacheBlock.py index c7adf917..a330e7a6 100644 --- a/fanficfare/chromagnon/cacheBlock.py +++ b/fanficfare/chromagnon/cacheBlock.py @@ -55,6 +55,7 @@ class CacheBlock(): # Read Magic Number magic = struct.unpack('I', header.read(4))[0] + # print("magic number:%s"%hex(magic)) if magic == CacheBlock.BLOCK_MAGIC: self.type = CacheBlock.BLOCK header.seek(2, 1)