diff options
Diffstat (limited to 'sphinx/make_mode.py')
-rw-r--r-- | sphinx/make_mode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/make_mode.py b/sphinx/make_mode.py index 2da5d5b71..346f9db2d 100644 --- a/sphinx/make_mode.py +++ b/sphinx/make_mode.py @@ -83,7 +83,7 @@ class Make(object): def build_help(self): # type: () -> None print(bold("Sphinx v%s" % sphinx.__display_version__)) - print("Please use `make %s' where %s is one of" % ((blue('target'),)*2)) # type: ignore # NOQA + print("Please use `make %s' where %s is one of" % ((blue('target'),) * 2)) # type: ignore # NOQA for osname, bname, description in BUILDERS: if not osname or os.name == osname: print(' %s %s' % (blue(bname.ljust(10)), description)) |