mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Set "allow_parallel" to false by default.
This commit is contained in:
parent
53d1d79ff8
commit
83c6b8231e
@ -39,8 +39,8 @@ class Builder(object):
|
||||
format = ''
|
||||
# doctree versioning method
|
||||
versioning_method = 'none'
|
||||
# allow parallel write_doc calls
|
||||
allow_parallel = True
|
||||
# allow parallel write_doc() calls
|
||||
allow_parallel = False
|
||||
|
||||
def __init__(self, app):
|
||||
self.env = app.env
|
||||
|
@ -60,6 +60,7 @@ class StandaloneHTMLBuilder(Builder):
|
||||
name = 'html'
|
||||
format = 'html'
|
||||
copysource = True
|
||||
allow_parallel = True
|
||||
out_suffix = '.html'
|
||||
link_suffix = '.html' # defaults to matching out_suffix
|
||||
indexer_format = js_index
|
||||
|
Loading…
Reference in New Issue
Block a user