mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
merge with 1.0
This commit is contained in:
commit
a79758baed
4
CHANGES
4
CHANGES
@ -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.
|
||||
|
||||
|
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user