summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJosh Watson <josh@joshwatson.com>2017-07-15 09:48:11 -0700
committerplafosse <peter.a.lafosse@gmail.com>2017-07-15 12:48:11 -0400
commit6857160ff18733d7a218101ab1d67ede04c1018b (patch)
treeba78b220d56cee6a0ed41947a74451008189bb54 /python
parent9d19db2be1fa408217f4544e5a68312fcab44fad (diff)
Accidentally omitted the parenthesis to create a tuple for SSAVariable.__hash__ (#737)
Diffstat (limited to 'python')
-rw-r--r--python/mediumlevelil.py2
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):