summaryrefslogtreecommitdiff
path: root/sphinx/extension.py
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/extension.py')
-rw-r--r--sphinx/extension.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/extension.py b/sphinx/extension.py
index 0520bf564..98d35b5af 100644
--- a/sphinx/extension.py
+++ b/sphinx/extension.py
@@ -5,7 +5,7 @@
Utilities for Sphinx extensions.
- :copyright: Copyright 2007-2017 by the Sphinx team, see AUTHORS.
+ :copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
@@ -38,7 +38,7 @@ class Extension(object):
# The extension supports parallel write or not. The default value
# is ``True``. Sphinx writes parallelly documents even if
# the extension does not tell its status.
- self.parallel_write_safe = kwargs.pop('parallel_read_safe', True)
+ self.parallel_write_safe = kwargs.pop('parallel_write_safe', True)
def verify_required_extensions(app, requirements):