diff options
Diffstat (limited to 'python/lowlevelil.py')
| -rw-r--r-- | python/lowlevelil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py index 6b9d09b4..11600924 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -3090,7 +3090,7 @@ class LowLevelILBasicBlock(basicblock.BasicBlock): def __getitem__(self, idx): size = self.end - self.start if isinstance(idx, slice): - return [self[index] for index in range(*idx.incides(size))] + return [self[index] for index in range(*idx.indices(size))] if idx > size or idx < -size: raise IndexError("list index is out of range") if idx >= 0: |
