mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Merge pull request #2559 from mgeier/parallel-error
Why is SphinxParallelError not derived from SphinxError?
This commit is contained in:
commit
42a6102cee
@ -67,7 +67,10 @@ class PycodeError(Exception):
|
||||
return res
|
||||
|
||||
|
||||
class SphinxParallelError(Exception):
|
||||
class SphinxParallelError(SphinxError):
|
||||
|
||||
category = 'Sphinx parallel build error'
|
||||
|
||||
def __init__(self, orig_exc, traceback):
|
||||
self.orig_exc = orig_exc
|
||||
self.traceback = traceback
|
||||
|
Loading…
Reference in New Issue
Block a user