diff options
Diffstat (limited to 'subcmds/status.py')
-rw-r--r-- | subcmds/status.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/subcmds/status.py b/subcmds/status.py index 041bcd0f..7187f4b1 100644 --- a/subcmds/status.py +++ b/subcmds/status.py | |||
@@ -101,19 +101,6 @@ the following meanings: | |||
101 | all = self.GetProjects(args) | 101 | all = self.GetProjects(args) |
102 | counter = itertools.count() | 102 | counter = itertools.count() |
103 | 103 | ||
104 | on = {} | ||
105 | for project in all: | ||
106 | cb = project.CurrentBranch | ||
107 | if cb: | ||
108 | if cb not in on: | ||
109 | on[cb] = [] | ||
110 | on[cb].append(project) | ||
111 | |||
112 | branch_names = list(on.keys()) | ||
113 | branch_names.sort() | ||
114 | for cb in branch_names: | ||
115 | print '# on branch %s' % cb | ||
116 | |||
117 | if opt.jobs == 1: | 104 | if opt.jobs == 1: |
118 | for project in all: | 105 | for project in all: |
119 | state = project.PrintWorkTreeStatus() | 106 | state = project.PrintWorkTreeStatus() |