Commit 679c9485 by devttys0

Fixed compression module exception bug

parent 40db0b3c
......@@ -53,7 +53,7 @@ class LZMA(object):
def build_property(self, pb, lp, lc):
prop = (((pb * 5) + lp) * 9) + lc
if prop > self.MAX_PROP:
prop = None
return None
return int(prop)
def parse_property(self, prop):
......
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