summaryrefslogtreecommitdiff
path: root/sphinx/util/parallel.py
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/util/parallel.py')
-rw-r--r--sphinx/util/parallel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/util/parallel.py b/sphinx/util/parallel.py
index 9246841e5..1d97a511c 100644
--- a/sphinx/util/parallel.py
+++ b/sphinx/util/parallel.py
@@ -88,7 +88,7 @@ class ParallelTasks(object):
failed = False
except BaseException as err:
failed = True
- errmsg = traceback.format_exception_only(err.__class__, err)[0].strip()
+ errmsg = traceback.format_exception_only(err.__class__, err)[0].strip() # type: ignore # NOQA
ret = (errmsg, traceback.format_exc())
logging.convert_serializable(collector.logs)
pipe.send((failed, collector.logs, ret))