diff options
Diffstat (limited to 'sphinx/setup_command.py')
-rw-r--r-- | sphinx/setup_command.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/setup_command.py b/sphinx/setup_command.py index 9a863611b..02449137e 100644 --- a/sphinx/setup_command.py +++ b/sphinx/setup_command.py @@ -163,8 +163,8 @@ class BuildDoc(Command): from docutils.utils import SystemMessage if isinstance(err, SystemMessage): print(darkred('reST markup error:'), file=sys.stderr) - print(err.args[0].encode('ascii', - 'backslashreplace'), file=sys.stderr) + print(err.args[0].encode('ascii', 'backslashreplace'), + file=sys.stderr) else: raise |