diff options
Diffstat (limited to 'subcmds/list.py')
-rw-r--r-- | subcmds/list.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/list.py b/subcmds/list.py index fba6a4dc..4338e1c9 100644 --- a/subcmds/list.py +++ b/subcmds/list.py | |||
@@ -131,7 +131,7 @@ This is similar to running: repo forall -c 'echo "$REPO_PATH : $REPO_PROJECT"'. | |||
131 | elif opt.path_only and not opt.name_only: | 131 | elif opt.path_only and not opt.name_only: |
132 | lines.append("%s" % (_getpath(project))) | 132 | lines.append("%s" % (_getpath(project))) |
133 | else: | 133 | else: |
134 | lines.append("%s : %s" % (_getpath(project), project.name)) | 134 | lines.append(f"{_getpath(project)} : {project.name}") |
135 | 135 | ||
136 | if lines: | 136 | if lines: |
137 | lines.sort() | 137 | lines.sort() |