diff options
Diffstat (limited to 'subcmds/branches.py')
-rw-r--r-- | subcmds/branches.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/branches.py b/subcmds/branches.py index d9a190be..59b5cb28 100644 --- a/subcmds/branches.py +++ b/subcmds/branches.py | |||
@@ -174,7 +174,7 @@ is shown, then the branch appears in all projects. | |||
174 | if _RelPath(p) not in have: | 174 | if _RelPath(p) not in have: |
175 | paths.append(_RelPath(p)) | 175 | paths.append(_RelPath(p)) |
176 | 176 | ||
177 | s = " %s %s" % (in_type, ", ".join(paths)) | 177 | s = f" {in_type} {', '.join(paths)}" |
178 | if not i.IsSplitCurrent and (width + 7 + len(s) < 80): | 178 | if not i.IsSplitCurrent and (width + 7 + len(s) < 80): |
179 | fmt = out.current if i.IsCurrent else fmt | 179 | fmt = out.current if i.IsCurrent else fmt |
180 | fmt(s) | 180 | fmt(s) |