diff options
| author | Georg Brandl <georg@python.org> | 2008-11-29 19:56:58 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2008-11-29 19:56:58 +0100 |
| commit | 10c994f344a0ecee8b43e94d0190b95d8d1d4aea (patch) | |
| tree | 6654473efc2533d915ed05ee0e220630ce020a51 /tests | |
| parent | 4ed2a4979a9d993430a62b72a8edd5536959c408 (diff) | |
| download | sphinx-10c994f344a0ecee8b43e94d0190b95d8d1d4aea.tar.gz | |
Move builders and writers into new packages.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_build.py | 2 | ||||
| -rw-r--r-- | tests/test_markup.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_build.py b/tests/test_build.py index 8ca17938..0443aada 100644 --- a/tests/test_build.py +++ b/tests/test_build.py @@ -20,7 +20,7 @@ from util import * from etree13 import ElementTree as ET from sphinx.builder import StandaloneHTMLBuilder, LaTeXBuilder -from sphinx.latexwriter import LaTeXTranslator +from sphinx.writers.latex import LaTeXTranslator html_warnfile = StringIO() diff --git a/tests/test_markup.py b/tests/test_markup.py index f1125103..a4b7cf77 100644 --- a/tests/test_markup.py +++ b/tests/test_markup.py @@ -17,8 +17,8 @@ from docutils import frontend, utils, nodes from docutils.parsers import rst from sphinx import addnodes -from sphinx.htmlwriter import HTMLWriter, SmartyPantsHTMLTranslator -from sphinx.latexwriter import LaTeXWriter, LaTeXTranslator +from sphinx.writers.html import HTMLWriter, SmartyPantsHTMLTranslator +from sphinx.writers.latex import LaTeXWriter, LaTeXTranslator def setup_module(): global app, settings, parser |
