diff options
author | Tim Hatch <tim@timhatch.com> | 2014-04-14 13:02:38 -0400 |
---|---|---|
committer | Tim Hatch <tim@timhatch.com> | 2014-04-14 13:02:38 -0400 |
commit | 68296591d500a2106c8fe2b7dccd144b58a2d6b7 (patch) | |
tree | 6320f1f243042034625ea08cacfad09bbed259e2 | |
parent | 19a3c9ec659b5b5c91b4cfadefe0126f47189da1 (diff) | |
download | pygments-68296591d500a2106c8fe2b7dccd144b58a2d6b7.tar.gz |
Only include the regular LatexFormatter in __all__
If we include the other, the tests will want to instantiate it, and we don't
want that. It's only run as a special case in cmdline.py right now.
-rw-r--r-- | pygments/formatters/latex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/formatters/latex.py b/pygments/formatters/latex.py index c70dba38..9968aa4c 100644 --- a/pygments/formatters/latex.py +++ b/pygments/formatters/latex.py @@ -18,7 +18,7 @@ from pygments.util import get_bool_opt, get_int_opt, StringIO, xrange, \ iteritems -__all__ = ['LatexEmbededLexer', 'LatexFormatter'] +__all__ = ['LatexFormatter'] def escape_tex(text, commandprefix): |