diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-01-09 18:14:53 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-01-09 18:14:53 +0900 |
commit | ecd7b621488c3721ca1bbbecfff0150c7365de54 (patch) | |
tree | e7f8c69e09246ca03c73605fb579942d0ed22ac1 /sphinx/util/parallel.py | |
parent | d4271c0dcec6be42f3968159a61469614739f241 (diff) | |
download | sphinx-git-ecd7b621488c3721ca1bbbecfff0150c7365de54.tar.gz |
Update type annotations
Diffstat (limited to 'sphinx/util/parallel.py')
-rw-r--r-- | sphinx/util/parallel.py | 2 |
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)) |