Chromium Code Reviews| Index: appengine/findit/crash/results.py |
| diff --git a/appengine/findit/crash/results.py b/appengine/findit/crash/results.py |
| index cb24f1968cc60fa5cfc0927106dd7f4951fdc6e0..69db1f03d96859e37459255252575aa7a38467fc 100644 |
| --- a/appengine/findit/crash/results.py |
| +++ b/appengine/findit/crash/results.py |
| @@ -37,7 +37,7 @@ class Result(object): |
| for file_path, stack_infos in self.file_to_stack_infos.iteritems(): |
| line_parts = [] |
| for frame, _ in stack_infos: |
| - line_parts.append('%s (#%d)' % (frame.function, frame.index)) |
| + line_parts.append('frame #%d' % frame.index) |
|
stgao
2016/06/16 17:32:04
Could we avoid including the change from the other
Sharu Jiang
2016/06/21 20:28:49
Yes, I uploaded separate cl for this, after rebase
|
| lines.append('Changed file %s crashed in %s' % ( |
| file_path, ', '.join(line_parts))) |