summaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authorrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2010-12-30 22:21:35 +0000
committerrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2010-12-30 22:21:35 +0000
commite800c67e91eb9311c09988f5c9578e6dd075008e (patch)
tree9bad60ce9531a71dca644f2e1862415f4ccb2ee5 /docs/conf.py
parent757b27dc229c333127a7bd363a4be3ce99864f2f (diff)
downloadpyfilesystem-e800c67e91eb9311c09988f5c9578e6dd075008e.tar.gz
add optional spellchecking support to docs makefile
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@592 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 6526577..6100996 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -24,6 +24,14 @@ import sys, os
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.coverage']
+try:
+ import sphinxcontrib.spelling
+except ImportError:
+ pass
+else:
+ extensions.append("sphinxcontrib.spelling")
+
+
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']