diff options
author | Jim Ingham <jingham@apple.com> | 2015-07-01 19:27:08 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2015-07-01 19:27:08 +0000 |
commit | 5673eef85ac4344421f3ea9fa43f3edb219ac289 (patch) | |
tree | 73a62f9a06d67a0717239af31e0d2ebed679aabf /lldb/examples/python | |
parent | 04c6c1f3a5aa236781cbc873f5663529de751a17 (diff) | |
download | bcm5719-llvm-5673eef85ac4344421f3ea9fa43f3edb219ac289.tar.gz bcm5719-llvm-5673eef85ac4344421f3ea9fa43f3edb219ac289.zip |
Add a missing space.
llvm-svn: 241181
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); |