| Index: third_party/jinja2/__init__.py
|
| diff --git a/third_party/jinja2/__init__.py b/third_party/jinja2/__init__.py
|
| index 6fa11c3a6db52cea4b2ea92a60b3745c86025983..029fb2e6e8b1c9be6dba38a4ea997defd1a7de38 100644
|
| --- a/third_party/jinja2/__init__.py
|
| +++ b/third_party/jinja2/__init__.py
|
| @@ -27,7 +27,7 @@
|
| :license: BSD, see LICENSE for more details.
|
| """
|
| __docformat__ = 'restructuredtext en'
|
| -__version__ = '2.7.1'
|
| +__version__ = '2.8'
|
|
|
| # high level interface
|
| from jinja2.environment import Environment, Template
|
| @@ -42,7 +42,8 @@ from jinja2.bccache import BytecodeCache, FileSystemBytecodeCache, \
|
| MemcachedBytecodeCache
|
|
|
| # undefined types
|
| -from jinja2.runtime import Undefined, DebugUndefined, StrictUndefined
|
| +from jinja2.runtime import Undefined, DebugUndefined, StrictUndefined, \
|
| + make_logging_undefined
|
|
|
| # exceptions
|
| from jinja2.exceptions import TemplateError, UndefinedError, \
|
| @@ -65,5 +66,5 @@ __all__ = [
|
| 'TemplatesNotFound', 'TemplateSyntaxError', 'TemplateAssertionError',
|
| 'ModuleLoader', 'environmentfilter', 'contextfilter', 'Markup', 'escape',
|
| 'environmentfunction', 'contextfunction', 'clear_caches', 'is_undefined',
|
| - 'evalcontextfilter', 'evalcontextfunction'
|
| + 'evalcontextfilter', 'evalcontextfunction', 'make_logging_undefined',
|
| ]
|
|
|