Commit 82fb2f68 by devttys0

Fixed python3 bug in compression.py

parent 1c203d4e
......@@ -16,7 +16,7 @@ class LZMAHeader(object):
class LZMA(object):
DESCRIPTION = "Raw LZMA compression stream"
FAKE_SIZE = "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
FAKE_SIZE = b"\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
COMMON_PROPERTIES = [0x5D, 0x6E]
MAX_PROP = ((4 * 5 + 4) * 9 + 8)
BLOCK_SIZE = 32*1024
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment