summaryrefslogtreecommitdiff
path: root/ext/django2jinja/django2jinja.py
diff options
context:
space:
mode:
Diffstat (limited to 'ext/django2jinja/django2jinja.py')
-rw-r--r--ext/django2jinja/django2jinja.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/django2jinja/django2jinja.py b/ext/django2jinja/django2jinja.py
index 6d9e76c..ad9627f 100644
--- a/ext/django2jinja/django2jinja.py
+++ b/ext/django2jinja/django2jinja.py
@@ -609,7 +609,7 @@ def width_ratio(writer, node):
@node(core_tags.WithNode)
def with_block(writer, node):
writer.warn('with block expanded into set statement. This could cause '
- 'variables following that block to be overriden.', node)
+ 'variables following that block to be overridden.', node)
writer.start_block()
writer.write('set %s = ' % node.name)
writer.node(node.var)