diff options
Diffstat (limited to 'subcmds/branches.py')
-rw-r--r-- | subcmds/branches.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/subcmds/branches.py b/subcmds/branches.py index b89cc2f8..fcf67ef5 100644 --- a/subcmds/branches.py +++ b/subcmds/branches.py | |||
@@ -155,11 +155,11 @@ is shown, then the branch appears in all projects. | |||
155 | if i.IsSplitCurrent or (in_cnt <= project_cnt - in_cnt): | 155 | if i.IsSplitCurrent or (in_cnt <= project_cnt - in_cnt): |
156 | in_type = 'in' | 156 | in_type = 'in' |
157 | for b in i.projects: | 157 | for b in i.projects: |
158 | relpath = b.project.relpath | 158 | relpath = _RelPath(b.project) |
159 | if not i.IsSplitCurrent or b.current: | 159 | if not i.IsSplitCurrent or b.current: |
160 | paths.append(_RelPath(b.project)) | 160 | paths.append(relpath) |
161 | else: | 161 | else: |
162 | non_cur_paths.append(_RelPath(b.project)) | 162 | non_cur_paths.append(relpath) |
163 | else: | 163 | else: |
164 | fmt = out.notinproject | 164 | fmt = out.notinproject |
165 | in_type = 'not in' | 165 | in_type = 'not in' |