[Python-checkins] r61792 - doctools/trunk/sphinx/builder.py

georg.brandl python-checkins at python.org
Sun Mar 23 09:34:33 CET 2008


Author: georg.brandl
Date: Sun Mar 23 09:34:33 2008
New Revision: 61792

Modified:
   doctools/trunk/sphinx/builder.py
Log:
Fix for build-all mode.


Modified: doctools/trunk/sphinx/builder.py
==============================================================================
--- doctools/trunk/sphinx/builder.py	(original)
+++ doctools/trunk/sphinx/builder.py	Sun Mar 23 09:34:33 2008
@@ -233,6 +233,8 @@
         if method == 'update':
             # build updated ones as well
             docnames = set(build_docnames) | set(updated_docnames)
+        else:
+            docnames = set(build_docnames)
 
         # add all toctree-containing files that may have changed
         for docname in list(docnames):


More information about the Python-checkins mailing list