mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-05-09 05:21:13 +02:00
More py3 fix
This commit is contained in:
parent
b99f8afbe9
commit
fb474c8c45
1 changed files with 1 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ class CacheData():
|
|||
else:
|
||||
block = open(os.path.join(self.address.path,self.address.fileSelector), 'rb')
|
||||
block.seek(8192 + self.address.blockNumber*self.address.entrySize)
|
||||
data = block.read(self.size).decode('utf-8')
|
||||
data = block.read(self.size)
|
||||
block.close()
|
||||
return data
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue