diff options
| author | Josh Watson <josh@joshwatson.com> | 2017-07-15 09:48:11 -0700 |
|---|---|---|
| committer | plafosse <peter.a.lafosse@gmail.com> | 2017-07-15 12:48:11 -0400 |
| commit | 6857160ff18733d7a218101ab1d67ede04c1018b (patch) | |
| tree | ba78b220d56cee6a0ed41947a74451008189bb54 /python/mediumlevelil.py | |
| parent | 9d19db2be1fa408217f4544e5a68312fcab44fad (diff) | |
Accidentally omitted the parenthesis to create a tuple for SSAVariable.__hash__ (#737)
Diffstat (limited to 'python/mediumlevelil.py')
| -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): |
