Add a missing space.
authorJim Ingham <jingham@apple.com>
Wed, 1 Jul 2015 19:27:08 +0000 (19:27 +0000)
committerJim Ingham <jingham@apple.com>
Wed, 1 Jul 2015 19:27:08 +0000 (19:27 +0000)
llvm-svn: 241181

lldb/examples/python/scripted_step.py

index f74a67b..7a690a1 100644 (file)
@@ -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);