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 = ''
|
format = ''
|
||||||
# doctree versioning method
|
# doctree versioning method
|
||||||
versioning_method = 'none'
|
versioning_method = 'none'
|
||||||
# allow parallel write_doc calls
|
# allow parallel write_doc() calls
|
||||||
allow_parallel = True
|
allow_parallel = False
|
||||||
|
|
||||||
def __init__(self, app):
|
def __init__(self, app):
|
||||||
self.env = app.env
|
self.env = app.env
|
||||||
|
@ -60,6 +60,7 @@ class StandaloneHTMLBuilder(Builder):
|
|||||||
name = 'html'
|
name = 'html'
|
||||||
format = 'html'
|
format = 'html'
|
||||||
copysource = True
|
copysource = True
|
||||||
|
allow_parallel = True
|
||||||
out_suffix = '.html'
|
out_suffix = '.html'
|
||||||
link_suffix = '.html' # defaults to matching out_suffix
|
link_suffix = '.html' # defaults to matching out_suffix
|
||||||
indexer_format = js_index
|
indexer_format = js_index
|
||||||
|
Loading…
Reference in New Issue
Block a user