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

Unified Diff: tools/findit/result.py

Issue 617073010: [Findit] Add timestamp of CL commit and fix two bugs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « tools/findit/match_set.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/findit/result.py
diff --git a/tools/findit/result.py b/tools/findit/result.py
index 3da8cd9bd0e16180bd043e06d704bfaf92838994..360a69bb6be0d43386bfc5127212c260fe45cfca 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, message):
+ reason, review_url, reviewers, line_content, message, time):
self.suspected_cl = suspected_cl
self.revision_url = revision_url
self.component_name = component_name
@@ -16,3 +16,4 @@ class Result(object):
self.reviewers = reviewers
self.line_content = line_content
self.commit_message = message
+ self.time = time
« no previous file with comments | « tools/findit/match_set.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698