From 78928bffab5b457bb05c41fd677695b6f4200507 Mon Sep 17 00:00:00 2001 From: "Md. Sabuj Sarker" Date: Sat, 2 Dec 2017 00:10:39 +0600 Subject: [PATCH] Fix typo instanciable > instantiable --- jinja2/nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.47.2