Index: third_party/WebKit/Tools/Scripts/webkitpy/common/system/stack_utils.py |
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/stack_utils.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/stack_utils.py |
index 664c665cec3b3270ad0d87bae7e25c7f566e841f..882c2807fcfb99880dc789b6d656ff70ec9ba2cd 100644 |
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/stack_utils.py |
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/stack_utils.py |
@@ -44,7 +44,8 @@ def log_thread_state(logger, name, thread_id, msg=''): |
def _find_thread_stack(thread_id): |
"""Returns a stack object that can be used to dump a stack trace for |
- the given thread id (or None if the id is not found).""" |
+ the given thread id (or None if the id is not found). |
+ """ |
for tid, stack in sys._current_frames().items(): |
if tid == thread_id: |
return stack |