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

Unified Diff: git_map_branches.py

Issue 1895463002: Mark outdated branches on 'cl status' (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@show-outdated-cls
Patch Set: fix for NO_UPSTREAM 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 | « 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 9c7ed1afb348eccf6b19b7164cb029f59db0b4cd..bbd52483381bc8d8e0899d8ed9419c18cf294bca 100755
--- a/git_map_branches.py
+++ b/git_map_branches.py
@@ -137,9 +137,10 @@ 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.
- (cl, status) = status_info.next()
+ (cl, status, outdated) = status_info.next()
self.__status_info[cl.GetBranchRef()] = (cl.GetIssueURL(),
- color_for_status(status))
+ color_for_status(status),
+ outdated)
roots = set()
@@ -260,8 +261,13 @@ class BranchMapper(object):
# The Rietveld issue associated with the branch.
if self.verbosity >= 2:
none_text = '' if self.__is_invalid_parent(branch) else 'None'
- (url, color) = self.__status_info[branch]
+ if branch in self.__status_info:
+ (url, color, outdated) = self.__status_info[branch]
+ else:
+ (url, color, outdated) = ('', '', False)
line.append(url or none_text, color=color)
+ if self.verbosity > 2:
+ line.append(' outdated' if outdated else ' ', color=Fore.RED)
# The subject of the most recent commit on the branch.
if self.show_subject:
« no previous file with comments | « git_cl.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698