#590: Fix inline display of graphviz diagrams in LaTeX output.

This commit is contained in:
Georg Brandl 2011-01-08 15:15:25 +01:00
parent 8356f88608
commit 30ce009d0d
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
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

View File

@ -236,7 +236,7 @@ def render_dot_latex(self, node, code, options, prefix='graphviz'):
raise nodes.SkipNode
if fname is not None:
self.body.append('\\includegraphics{%s}' % fname)
self.body.append('\n\\includegraphics{%s}\n' % fname)
raise nodes.SkipNode