summaryrefslogtreecommitdiff
path: root/sphinx/cmd/make_mode.py
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/cmd/make_mode.py')
-rw-r--r--sphinx/cmd/make_mode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/cmd/make_mode.py b/sphinx/cmd/make_mode.py
index 3e3663c81..6624903f9 100644
--- a/sphinx/cmd/make_mode.py
+++ b/sphinx/cmd/make_mode.py
@@ -85,7 +85,7 @@ class Make:
print("Please use `make %s' where %s is one of" % ((blue('target'),) * 2))
for osname, bname, description in BUILDERS:
if not osname or os.name == osname:
- print(' %s %s' % (blue(bname.ljust(10)), description))
+ print(f' {blue(bname.ljust(10))} {description}')
def build_latexpdf(self) -> int:
if self.run_generic_build('latex') > 0: