summaryrefslogtreecommitdiff
path: root/jinja2/exceptions.py
diff options
context:
space:
mode:
authorPriit Laes <plaes@plaes.org>2008-04-17 19:04:44 +0200
committerPriit Laes <plaes@plaes.org>2008-04-17 19:04:44 +0200
commit4149a0e8b7375e12c24dee7be9842fddc61059a6 (patch)
tree58628a6a84d3e82e99864ef7c708d5c547b9812d /jinja2/exceptions.py
parent9a82205d536ca9708768a439373b91651556512f (diff)
downloadjinja2-4149a0e8b7375e12c24dee7be9842fddc61059a6.tar.gz
fixed two typos
--HG-- branch : trunk
Diffstat (limited to 'jinja2/exceptions.py')
-rw-r--r--jinja2/exceptions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/jinja2/exceptions.py b/jinja2/exceptions.py
index efa9e89..b4c87da 100644
--- a/jinja2/exceptions.py
+++ b/jinja2/exceptions.py
@@ -30,7 +30,7 @@ class TemplateSyntaxError(TemplateError):
"""Raised to tell the user that there is a problem with the template."""
def __init__(self, message, lineno, name):
- TEmplateError.__init__(self, '%s (line %s)' % (message, lineno))
+ TemplateError.__init__(self, '%s (line %s)' % (message, lineno))
self.message = message
self.lineno = lineno
self.name = name