From c1b6a2fd7d4325b5404fce38a2ae72234af1302c Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Wed, 30 Jan 2019 16:26:50 -0500 Subject: Fix rebase removing changes --- python/lowlevelil.py | 2 +- python/mediumlevelil.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'python') diff --git a/python/lowlevelil.py b/python/lowlevelil.py index 08c27383..017ad9b2 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -2413,7 +2413,7 @@ class LowLevelILBasicBlock(basicblock.BasicBlock): else: return self.il_function[self.end + idx] - def _create_instance(self, view, handle): + def _create_instance(self, handle, view): """Internal method by super to instantiate child instances""" return LowLevelILBasicBlock(view, handle, self.il_function) diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index a83cfff4..0ef09642 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -990,7 +990,7 @@ class MediumLevelILBasicBlock(basicblock.BasicBlock): else: return self.il_function[self.end + idx] - def _create_instance(self, view, handle): + def _create_instance(self, handle, view): """Internal method by super to instantiate child instances""" return MediumLevelILBasicBlock(view, handle, self.il_function) -- cgit v1.3.1