From: Simon Sapin Date: Sat, 3 Dec 2011 12:05:08 +0000 (+0100) Subject: Typo fix X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=52c88fb66ad7eafd9ec4e7497398675c03169b4b;p=jinja2.git Typo fix --- 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)