diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index b86934595..f217c2c00 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -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 diff --git a/sphinx/builders/html.py b/sphinx/builders/html.py index 573bb9b2c..4c700c8ab 100644 --- a/sphinx/builders/html.py +++ b/sphinx/builders/html.py @@ -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