From 158bfeb5a3702ff0befc5221966bcfe67dbfeec9 Mon Sep 17 00:00:00 2001 From: Josh Watson Date: Tue, 6 Nov 2018 11:16:00 -0800 Subject: Forgot the return False at the end --- python/mediumlevelil.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index f35b2e6e..e7059918 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -76,6 +76,8 @@ class MediumLevelILOperationAndSize(object): return other == self.operation if isinstance(other, MediumLevelILOperationAndSize): return other.size == self.size and other.operation == self.operation + else: + return False class MediumLevelILInstruction(object): -- cgit v1.3.1