Merge pull request #78 from SimonSapin/patch-2
[jinja2.git] / 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)