diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/mediumlevelil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index 1fdfab4b..fb27c490 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -43,7 +43,7 @@ class SSAVariable(object): ) def __hash__(self): - return hash(self.var.identifier, self.version) + return hash((self.var.identifier, self.version)) class MediumLevelILLabel(object): |
