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

Unified Diff: git_cl.py

Issue 1884673004: Fix regression in git cl for Gerrit. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 4 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 | « no previous file | no next file » | no next file with comments »
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 63d01adadd8a85b2047a6ab1f6156046e3d9e6e8..0aa942dc3baf5428a0b886cacf299546838d1f50 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -2080,7 +2080,8 @@ class _GerritChangelistImpl(_ChangelistCodereviewBase):
options = options or []
issue = issue or self.GetIssue()
assert issue, 'issue required to query Gerrit'
- return gerrit_util.GetChangeDetail(self._GetGerritHost(), options, issue)
+ return gerrit_util.GetChangeDetail(self._GetGerritHost(), str(issue),
+ options)
def CMDLand(self, force, bypass_hooks, verbose):
if git_common.is_dirty_git_tree('land'):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698