Skip to content

Commit

Permalink
Merge pull request pallets#78 from SimonSapin/patch-2
Browse files Browse the repository at this point in the history
Typo fix
  • Loading branch information
rduplain committed Mar 9, 2012
2 parents 220538c + 52c88fb commit 1305cfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jinja2/exceptions.py
Expand Up @@ -62,7 +62,7 @@ class TemplatesNotFound(TemplateNotFound):

def __init__(self, names=(), message=None):
if message is None:
message = u'non of the templates given were found: ' + \
message = u'none of the templates given were found: ' + \
u', '.join(map(unicode, names))
TemplateNotFound.__init__(self, names and names[-1] or None, message)
self.templates = list(names)
Expand Down

0 comments on commit 1305cfd

Please sign in to comment.