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

Unified Diff: git_cl.py

Issue 6820076: Add author to Change object. Don't set it yet. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 9 years, 8 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 | « gcl.py ('k') | presubmit_support.py » ('j') | tests/presubmit_unittest.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git_cl.py
diff --git a/git_cl.py b/git_cl.py
index 8cdf1318c5d27e2350aabccd6f1c8dcf81c2d461..d0866ca3a22617a9be8e7a4e9ff3e3abc947f538 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -837,8 +837,14 @@ def RunHook(committing, upstream_branch, rietveld_server, tbr, may_prompt,
# with these log messages.
description = RunCommand(['git', 'log', '--pretty=format:%s%n%n%b',
'%s...' % (upstream_branch)]).strip()
- change = presubmit_support.GitChange(name, description, absroot, files,
- issue, patchset)
+ change = presubmit_support.GitChange(
+ name,
+ description,
+ absroot,
+ files,
+ issue,
+ patchset,
+ None)
# Apply watchlists on upload.
if not committing:
« no previous file with comments | « gcl.py ('k') | presubmit_support.py » ('j') | tests/presubmit_unittest.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698