From: Md. Sabuj Sarker Date: Fri, 1 Dec 2017 18:10:39 +0000 (+0600) Subject: Fix typo instanciable > instantiable X-Git-Tag: 2.11.0~130^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F787%2Fhead;p=thirdparty%2Fjinja.git Fix typo instanciable > instantiable --- diff --git a/jinja2/nodes.py b/jinja2/nodes.py index 4d9a01ad..35bcd681 100644 --- a/jinja2/nodes.py +++ b/jinja2/nodes.py @@ -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: