Updated code quality binary operator warning changes in helper_msgcoding.py
This commit is contained in:
parent
ef01b56291
commit
b993446160
|
@ -103,8 +103,8 @@ class MsgDecode(object):
|
||||||
while len(tmp) <= BMConfigParser().safeGetInt("zlib", "maxsize"):
|
while len(tmp) <= BMConfigParser().safeGetInt("zlib", "maxsize"):
|
||||||
try:
|
try:
|
||||||
got = dc.decompress(
|
got = dc.decompress(
|
||||||
data, BMConfigParser().safeGetInt("zlib", "maxsize") +
|
data, BMConfigParser().safeGetInt("zlib", "maxsize")
|
||||||
1 - len(tmp))
|
+ 1 - len(tmp))
|
||||||
# EOF
|
# EOF
|
||||||
if got == "":
|
if got == "":
|
||||||
break
|
break
|
||||||
|
|
Reference in New Issue
Block a user