| Index: appengine/findit/crash/culprit.py
|
| diff --git a/appengine/findit/crash/culprit.py b/appengine/findit/crash/culprit.py
|
| index 63d111e0b15a8451f13d7c83ba2034066225c070..5b0046ceb5e8bcbfbe29b14926c7099efe54fc84 100644
|
| --- a/appengine/findit/crash/culprit.py
|
| +++ b/appengine/findit/crash/culprit.py
|
| @@ -9,6 +9,9 @@ class Culprit(namedtuple('Culprit',
|
| ['project', 'components', 'cls', 'regression_range', 'algorithm'])):
|
| """The result of successfully identifying the culprit of a crash report.
|
|
|
| + That is, this is what ``Predator.FindCultprit`` returns. It encapsulates
|
| + all the information predator discovered during its various analyses.
|
| +
|
| Args:
|
| project (str): the most-suspected project
|
| components (list of str): the suspected crbug components.
|
| @@ -89,8 +92,6 @@ class Culprit(namedtuple('Culprit',
|
| 'found_suspects': False,
|
| }
|
| """
|
| - # TODO(wrengr): will this auto-dropping of unnecessary fields cause
|
| - # any issues for JSON serialization?
|
| result = {}
|
| result['found'] = (
|
| bool(self.project) or
|
|
|