Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Unified Diff: tools/findit/result.py

Issue 478763003: [Findit] Bug fixing and implemented some feature requests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed a bug in intersection Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/findit/result.py
diff --git a/tools/findit/result.py b/tools/findit/result.py
index fcef3f6c2a4637800271aeccdd2a4962aa1e129a..3da8cd9bd0e16180bd043e06d704bfaf92838994 100644
--- a/tools/findit/result.py
+++ b/tools/findit/result.py
@@ -6,7 +6,7 @@
class Result(object):
def __init__(self, suspected_cl, revision_url, component_name, author,
- reason, review_url, reviewers, line_content):
+ reason, review_url, reviewers, line_content, message):
self.suspected_cl = suspected_cl
self.revision_url = revision_url
self.component_name = component_name
@@ -15,3 +15,4 @@ class Result(object):
self.review_url = review_url
self.reviewers = reviewers
self.line_content = line_content
+ self.commit_message = message

Powered by Google App Engine
This is Rietveld 408576698