]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
Fix typo instanciable > instantiable 787/head
authorMd. Sabuj Sarker <md.sabuj.sarker@gmail.com>
Fri, 1 Dec 2017 18:10:39 +0000 (00:10 +0600)
committerGitHub <noreply@github.com>
Fri, 1 Dec 2017 18:10:39 +0000 (00:10 +0600)
jinja2/nodes.py

index 4d9a01ad8bb2e7b0b63ed483e7c4c34ed0a22033..35bcd6815e7fea132472f16ce0bdba8a2bd3f5cd 100644 (file)
@@ -126,7 +126,7 @@ class Node(with_metaclass(NodeType, object)):
 
     def __init__(self, *fields, **attributes):
         if self.abstract:
-            raise TypeError('abstract nodes are not instanciable')
+            raise TypeError('abstract nodes are not instantiable')
         if fields:
             if len(fields) != len(self.fields):
                 if not self.fields: