summaryrefslogtreecommitdiff
path: root/sphinx/builders
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-01-19 17:46:06 +0100
committerGeorg Brandl <georg@python.org>2014-01-19 17:46:06 +0100
commit2a8cf7c7781a4554adbcb4bae6bec2a40bfc156d (patch)
treeb8af16b65c565b458bc483d14a0d6498802d78f3 /sphinx/builders
parenta003cdbd2fcf73e24670568facda9bd6c5a73e76 (diff)
downloadsphinx-2a8cf7c7781a4554adbcb4bae6bec2a40bfc156d.tar.gz
The deprecated config values ``exclude_trees``, ``exclude_dirnames`` and ``unused_docs`` have been removed.
Diffstat (limited to 'sphinx/builders')
-rw-r--r--sphinx/builders/html.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/sphinx/builders/html.py b/sphinx/builders/html.py
index b6ebf926..d715607e 100644
--- a/sphinx/builders/html.py
+++ b/sphinx/builders/html.py
@@ -579,10 +579,7 @@ class StandaloneHTMLBuilder(Builder):
# then, copy over all user-supplied static files
staticentries = [path.join(self.confdir, spath)
for spath in self.config.html_static_path]
- matchers = compile_matchers(
- self.config.exclude_patterns +
- ['**/' + d for d in self.config.exclude_dirnames]
- )
+ matchers = compile_matchers(self.config.exclude_patterns)
for entry in staticentries:
if not path.exists(entry):
self.warn('html_static_path entry %r does not exist' % entry)