From: Armin Ronacher Date: Thu, 5 Jan 2017 22:33:27 +0000 (+0100) Subject: Do not emit make_logging_undefined to runtime X-Git-Tag: 2.9~30^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46025fb3c73f89286eb36800a2ab942c762ce3d5;p=thirdparty%2Fjinja.git Do not emit make_logging_undefined to runtime --- diff --git a/jinja2/runtime.py b/jinja2/runtime.py index 15f89d15..c1034d93 100644 --- a/jinja2/runtime.py +++ b/jinja2/runtime.py @@ -24,7 +24,7 @@ from jinja2._compat import imap, text_type, iteritems, \ __all__ = ['LoopContext', 'TemplateReference', 'Macro', 'Markup', 'TemplateRuntimeError', 'missing', 'concat', 'escape', 'markup_join', 'unicode_join', 'to_string', 'identity', - 'TemplateNotFound', 'make_logging_undefined'] + 'TemplateNotFound'] #: the name of the function that is used to convert something into #: a string. We can just use the text type here.