Set "allow_parallel" to false by default.

This commit is contained in:
Georg Brandl 2013-01-13 19:44:09 +01:00
parent 53d1d79ff8
commit 83c6b8231e
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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