| Index: tools/findit/blame.py
|
| diff --git a/tools/findit/blame.py b/tools/findit/blame.py
|
| index 30c54bd1887e0c454a1d8f5c700e27ad8e3c1881..67ca30e8f7163a27f4fd56267ff02feb5597205b 100644
|
| --- a/tools/findit/blame.py
|
| +++ b/tools/findit/blame.py
|
| @@ -124,6 +124,9 @@ class BlameList(object):
|
| file_path = stack_frame.file_path
|
| crashed_line_number = stack_frame.crashed_line_range[0]
|
|
|
| + if file_path.startswith(component_path):
|
| + file_path = file_path[len(component_path):]
|
| +
|
| # Parse blame information.
|
| parsed_blame_info = repository_parser.ParseBlameInfo(
|
| component_path, file_path, crashed_line_number, crash_revision)
|
|
|