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

Unified Diff: git_map_branches.py

Issue 1893563002: Use CLs more consistently instead of branch names (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: fix git map-branches -vv 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
« git_cl.py ('K') | « git_cl.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git_map_branches.py
diff --git a/git_map_branches.py b/git_map_branches.py
index 016a0330f732a9e76286c79fdea08ef4ed10ec33..9c7ed1afb348eccf6b19b7164cb029f59db0b4cd 100755
--- a/git_map_branches.py
+++ b/git_map_branches.py
@@ -137,8 +137,9 @@ class BranchMapper(object):
for _ in xrange(len(self.__branches_info)):
# This is a blocking get which waits for the remote CL status to be
# retrieved.
- (branch, url, status) = status_info.next()
- self.__status_info[branch] = (url, color_for_status(status))
+ (cl, status) = status_info.next()
+ self.__status_info[cl.GetBranchRef()] = (cl.GetIssueURL(),
tandrii(chromium) 2016/04/26 09:49:51 It used to be called 'branch' not branchref. Are y
+ color_for_status(status))
roots = set()
« git_cl.py ('K') | « git_cl.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698