| Index: appengine/findit/crash/project_classifier.py
|
| diff --git a/appengine/findit/crash/project_classifier.py b/appengine/findit/crash/project_classifier.py
|
| index 9e4e47bcee62ba263ae2a687680d3314e32c531a..5cc9d9428e2a9439f97780fcdb0e63700a3733fc 100644
|
| --- a/appengine/findit/crash/project_classifier.py
|
| +++ b/appengine/findit/crash/project_classifier.py
|
| @@ -107,7 +107,8 @@ class ProjectClassifier(object):
|
| if results:
|
| classes = map(self.GetClassFromResult, results[:top_n_frames])
|
| else:
|
| - classes = map(self.GetClassFromStackFrame, crash_stack[:top_n_frames])
|
| + classes = map(self.GetClassFromStackFrame,
|
| + crash_stack.frames[:top_n_frames])
|
|
|
| # Since we're only going to return the highest-ranked class, might
|
| # as well set ``max_classes`` to 1.
|
|
|