diff options
Diffstat (limited to 'subcmds/overview.py')
-rw-r--r-- | subcmds/overview.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subcmds/overview.py b/subcmds/overview.py index 63f5a79e..11dba95f 100644 --- a/subcmds/overview.py +++ b/subcmds/overview.py | |||
@@ -47,7 +47,7 @@ are displayed. | |||
47 | 47 | ||
48 | def Execute(self, opt, args): | 48 | def Execute(self, opt, args): |
49 | all_branches = [] | 49 | all_branches = [] |
50 | for project in self.GetProjects(args): | 50 | for project in self.GetProjects(args, all_manifests=not opt.this_manifest_only): |
51 | br = [project.GetUploadableBranch(x) | 51 | br = [project.GetUploadableBranch(x) |
52 | for x in project.GetBranches()] | 52 | for x in project.GetBranches()] |
53 | br = [x for x in br if x] | 53 | br = [x for x in br if x] |
@@ -76,7 +76,7 @@ are displayed. | |||
76 | if project != branch.project: | 76 | if project != branch.project: |
77 | project = branch.project | 77 | project = branch.project |
78 | out.nl() | 78 | out.nl() |
79 | out.project('project %s/' % project.relpath) | 79 | out.project('project %s/' % project.RelPath(local=opt.this_manifest_only)) |
80 | out.nl() | 80 | out.nl() |
81 | 81 | ||
82 | commits = branch.commits | 82 | commits = branch.commits |