summaryrefslogtreecommitdiff
path: root/src/jinja/runtime.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/jinja/runtime.py')
-rw-r--r--src/jinja/runtime.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/jinja/runtime.py b/src/jinja/runtime.py
index f6d58a6..d356b07 100644
--- a/src/jinja/runtime.py
+++ b/src/jinja/runtime.py
@@ -701,7 +701,7 @@ class Undefined(object):
>>> foo + 42
Traceback (most recent call last):
...
- jinja.exceptions.UndefinedError: 'foo' is undefined
+ jinja2.exceptions.UndefinedError: 'foo' is undefined
"""
__slots__ = (
@@ -926,7 +926,7 @@ class ChainableUndefined(Undefined):
>>> foo.bar['baz'] + 42
Traceback (most recent call last):
...
- jinja.exceptions.UndefinedError: 'foo' is undefined
+ jinja2.exceptions.UndefinedError: 'foo' is undefined
.. versionadded:: 2.11.0
"""
@@ -954,7 +954,7 @@ class DebugUndefined(Undefined):
>>> foo + 42
Traceback (most recent call last):
...
- jinja.exceptions.UndefinedError: 'foo' is undefined
+ jinja2.exceptions.UndefinedError: 'foo' is undefined
"""
__slots__ = ()
@@ -980,15 +980,15 @@ class StrictUndefined(Undefined):
>>> str(foo)
Traceback (most recent call last):
...
- jinja.exceptions.UndefinedError: 'foo' is undefined
+ jinja2.exceptions.UndefinedError: 'foo' is undefined
>>> not foo
Traceback (most recent call last):
...
- jinja.exceptions.UndefinedError: 'foo' is undefined
+ jinja2.exceptions.UndefinedError: 'foo' is undefined
>>> foo + 42
Traceback (most recent call last):
...
- jinja.exceptions.UndefinedError: 'foo' is undefined
+ jinja2.exceptions.UndefinedError: 'foo' is undefined
"""
__slots__ = ()