Typo fix
authorSimon Sapin <simon.sapin@exyr.org>
Sat, 3 Dec 2011 12:05:08 +0000 (13:05 +0100)
committerSimon Sapin <simon.sapin@exyr.org>
Sat, 3 Dec 2011 12:05:08 +0000 (13:05 +0100)
jinja2/exceptions.py

index 771f6a8d7a763e9bf2201ff9511dc25611ca7456..841aabbd12ff082492673b07e5de795d53fe336e 100644 (file)
@@ -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)