summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--python/mediumlevelil.py2
1 files changed, 2 insertions, 0 deletions
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):