From 52c88fb66ad7eafd9ec4e7497398675c03169b4b Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Sat, 3 Dec 2011 13:05:08 +0100 Subject: [PATCH] Typo fix --- jinja2/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jinja2/exceptions.py b/jinja2/exceptions.py index 771f6a8..841aabb 100644 --- a/jinja2/exceptions.py +++ b/jinja2/exceptions.py @@ -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) -- 2.26.2