# HG changeset patch # User cmlenz # Date 1155679261 0 # Node ID d35688d1683185aa56a35f5c36955d90bca0491c # Parent 537f819c547b3a1e7f97b95c739e3e8bfc62c4be Removed to many classes from the `__all__` list of `markup.template` in [191]. diff --git a/markup/template.py b/markup/template.py --- a/markup/template.py +++ b/markup/template.py @@ -31,8 +31,8 @@ from markup.input import XMLParser from markup.path import Path -__all__ = ['TemplateSyntaxError', 'TemplateNotFound', 'Template', - 'TemplateLoader'] +__all__ = ['BadDirectiveError', 'TemplateError', 'TemplateSyntaxError', + 'TemplateNotFound', 'Template', 'TemplateLoader'] class TemplateError(Exception):