merge with 1.0

This commit is contained in:
Georg Brandl 2011-01-08 15:40:35 +01:00
commit a79758baed
2 changed files with 5 additions and 4 deletions

View File

@ -85,6 +85,10 @@ Release 1.1 (in development)
Release 1.0.7 (in development)
==============================
* #590: Fix inline display of graphviz diagrams in LaTeX output.
* #589: Build using app.build() in setup command.
* Fix a bug in the inheritance diagram exception that caused base
classes to be skipped if one of them is a builtin.

View File

@ -137,10 +137,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):