[Lldb-commits] [lldb] r241181 - Add a missing space.

Jim Ingham jingham at apple.com
Wed Jul 1 12:27:08 PDT 2015


Author: jingham
Date: Wed Jul  1 14:27:08 2015
New Revision: 241181

URL: http://llvm.org/viewvc/llvm-project?rev=241181&view=rev
Log:
Add a missing space.

Modified:
    lldb/trunk/examples/python/scripted_step.py

Modified: lldb/trunk/examples/python/scripted_step.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/examples/python/scripted_step.py?rev=241181&r1=241180&r2=241181&view=diff
==============================================================================
--- lldb/trunk/examples/python/scripted_step.py (original)
+++ lldb/trunk/examples/python/scripted_step.py Wed Jul  1 14:27:08 2015
@@ -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);





More information about the lldb-commits mailing list