diff options
| author | gbrandl <devnull@localhost> | 2009-03-15 19:06:57 +0100 |
|---|---|---|
| committer | gbrandl <devnull@localhost> | 2009-03-15 19:06:57 +0100 |
| commit | 0da45a6b8fb1ca6d6df260c11d6a734ac306ab9c (patch) | |
| tree | b8c99655137b45c812030818389cce271a1a32f7 /sphinx/builders/latex.py | |
| parent | 558af5109a10a5351a45e810bfe3b84285bb1b4a (diff) | |
| download | sphinx-0da45a6b8fb1ca6d6df260c11d6a734ac306ab9c.tar.gz | |
Fix attribute reference error.
Diffstat (limited to 'sphinx/builders/latex.py')
| -rw-r--r-- | sphinx/builders/latex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/builders/latex.py b/sphinx/builders/latex.py index 96d70e3e..bc2f1ba5 100644 --- a/sphinx/builders/latex.py +++ b/sphinx/builders/latex.py @@ -123,7 +123,7 @@ class LaTeXBuilder(Builder): except Exception: self.warn('toctree contains ref to nonexisting ' 'file %r' % includefile, - self.builder.env.doc2path(docname)) + self.env.doc2path(docname)) else: sof = addnodes.start_of_file(docname=includefile) sof.children = subtree.children |
