include tags are now able to select between multiple templates
and take the first that exists, if a list of templates is
given.
--HG--
branch : trunk
diff --git a/jinja2/__init__.py b/jinja2/__init__.py
index b7a14f7..41dd615 100644
--- a/jinja2/__init__.py
+++ b/jinja2/__init__.py
@@ -49,7 +49,8 @@
# exceptions
from jinja2.exceptions import TemplateError, UndefinedError, \
- TemplateNotFound, TemplateSyntaxError, TemplateAssertionError
+ TemplateNotFound, TemplatesNotFound, TemplateSyntaxError, \
+ TemplateAssertionError
# decorators and public utilities
from jinja2.filters import environmentfilter, contextfilter
@@ -62,7 +63,7 @@
'ChoiceLoader', 'BytecodeCache', 'FileSystemBytecodeCache',
'MemcachedBytecodeCache', 'Undefined', 'DebugUndefined',
'StrictUndefined', 'TemplateError', 'UndefinedError', 'TemplateNotFound',
- 'TemplateSyntaxError', 'TemplateAssertionError', 'environmentfilter',
- 'contextfilter', 'Markup', 'escape', 'environmentfunction',
- 'contextfunction', 'clear_caches', 'is_undefined'
+ 'TemplatesNotFound', 'TemplateSyntaxError', 'TemplateAssertionError',
+ 'environmentfilter', 'contextfilter', 'Markup', 'escape',
+ 'environmentfunction', 'contextfunction', 'clear_caches', 'is_undefined'
]