From d99e16ef35c9f49c276a12318c988690f277f724 Mon Sep 17 00:00:00 2001 From: c0fec0de Date: Tue, 6 Jun 2017 10:43:34 +0200 Subject: [PATCH] Fix typo. --- anytree/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anytree/node.py b/anytree/node.py index cc1a9e8..3f777ea 100644 --- a/anytree/node.py +++ b/anytree/node.py @@ -239,7 +239,7 @@ def ancestors(self): @property def anchestors(self): """ - All parent nodes and their parent nodes - see :any:`anchestors`. + All parent nodes and their parent nodes - see :any:`ancestors`. The attribute `anchestors` is just a typo of `ancestors`. Please use `ancestors`. This attribute will be removed in the 2.0.0 release.