diff options
| author | Georg Brandl <georg@python.org> | 2011-01-08 10:06:42 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2011-01-08 10:06:42 +0100 |
| commit | dcbd2d84c47e8926814fe71bdcab5027ae6248a1 (patch) | |
| tree | 43e0e6088b99aa5947ca4b5fa7d790895faec40e /sphinx/setup_command.py | |
| parent | 315db0573d9a7da87124f68a63640d8bd847b36f (diff) | |
| download | sphinx-dcbd2d84c47e8926814fe71bdcab5027ae6248a1.tar.gz | |
Actually make the change advertised in rev 40d4dae1df70.
Diffstat (limited to 'sphinx/setup_command.py')
| -rw-r--r-- | sphinx/setup_command.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sphinx/setup_command.py b/sphinx/setup_command.py index 5c705584..34da039b 100644 --- a/sphinx/setup_command.py +++ b/sphinx/setup_command.py @@ -136,10 +136,7 @@ class BuildDoc(Command): freshenv=self.fresh_env) try: - if self.all_files: - app.builder.build_all() - else: - app.builder.build_update() + app.build(force_all=self.all_files) except Exception, err: from docutils.utils import SystemMessage if isinstance(err, SystemMessage): |
