diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2011-01-01 22:54:22 +0100 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2011-01-01 22:54:22 +0100 |
commit | e03f19c609df363f910730ce63e756a166d9e9be (patch) | |
tree | 826efe7f195faec212ea87d444a188a129af6a9a /doc | |
parent | a2a5959a55319352db113645deca3726a53ca5e1 (diff) | |
download | pyexiv2-e03f19c609df363f910730ce63e756a166d9e9be.tar.gz |
Invoke the sphinx builder without named parameters.
The "all_files" parameter (as found in sphinx 0.6.6) was renamed to "force_all" in sphinx 1.0.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/SConscript b/doc/SConscript index 333e65c..6de280a 100644 --- a/doc/SConscript +++ b/doc/SConscript @@ -20,7 +20,7 @@ output = [os.path.join(outdir, doc + '.html') for doc in sphinx.builder.get_outdated_docs()] def build_doc(target, source, env): - sphinx.build(all_files=False, filenames=[]) + sphinx.build(False, []) return sphinx.statuscode env = Environment() |