diff options
Diffstat (limited to 'lldb/examples/python')
-rw-r--r-- | lldb/examples/python/scripted_step.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/examples/python/scripted_step.py b/lldb/examples/python/scripted_step.py index f74a67be222..7a690a17210 100644 --- a/lldb/examples/python/scripted_step.py +++ b/lldb/examples/python/scripted_step.py @@ -108,7 +108,7 @@ class SimpleStep: return True class StepWithPlan: - def__init__ (self,thread_plan, dict): + def __init__ (self, thread_plan, dict): self.thread_plan = thread_plan self.start_address = thread_plan.GetThread().GetFrameAtIndex(0).GetPCAddress() self.step_thread_plan =thread_plan.QueueThreadPlanForStepOverRange(self.start_address, 20); |