From 6857160ff18733d7a218101ab1d67ede04c1018b Mon Sep 17 00:00:00 2001 From: Josh Watson Date: Sat, 15 Jul 2017 09:48:11 -0700 Subject: Accidentally omitted the parenthesis to create a tuple for SSAVariable.__hash__ (#737) --- python/mediumlevelil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') 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): -- cgit v1.3.1