From 5673eef85ac4344421f3ea9fa43f3edb219ac289 Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Wed, 1 Jul 2015 19:27:08 +0000 Subject: [PATCH] Add a missing space. llvm-svn: 241181 --- lldb/examples/python/scripted_step.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/examples/python/scripted_step.py b/lldb/examples/python/scripted_step.py index f74a67b..7a690a1 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); -- 2.7.4