diff options
author | Conley Owens <cco3@android.com> | 2013-04-19 15:31:28 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-04-19 15:31:29 +0000 |
commit | c4c01f914c7cdfa997be60ea97cd487d63333a04 (patch) | |
tree | c7063f88ab55998187c907807364ce7f4444cc4a /subcmds/overview.py | |
parent | 51813dfed1528307c46707bc38b4db33b87bb36e (diff) | |
parent | 217ea7d2747e3098009afe0b389fc4b45f55ea5a (diff) | |
download | git-repo-c4c01f914c7cdfa997be60ea97cd487d63333a04.tar.gz |
Merge "Some fixes for supporting python3"
Diffstat (limited to 'subcmds/overview.py')
-rw-r--r-- | subcmds/overview.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/overview.py b/subcmds/overview.py index 418459ae..eed8cf20 100644 --- a/subcmds/overview.py +++ b/subcmds/overview.py | |||
@@ -42,7 +42,7 @@ are displayed. | |||
42 | all_branches = [] | 42 | all_branches = [] |
43 | for project in self.GetProjects(args): | 43 | for project in self.GetProjects(args): |
44 | br = [project.GetUploadableBranch(x) | 44 | br = [project.GetUploadableBranch(x) |
45 | for x in project.GetBranches().keys()] | 45 | for x in project.GetBranches()] |
46 | br = [x for x in br if x] | 46 | br = [x for x in br if x] |
47 | if opt.current_branch: | 47 | if opt.current_branch: |
48 | br = [x for x in br if x.name == project.CurrentBranch] | 48 | br = [x for x in br if x.name == project.CurrentBranch] |