diff options
Diffstat (limited to 'Tools/compiler/astgen.py')
-rw-r--r-- | Tools/compiler/astgen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/compiler/astgen.py b/Tools/compiler/astgen.py index fc929936cd..9386bf04a6 100644 --- a/Tools/compiler/astgen.py +++ b/Tools/compiler/astgen.py @@ -172,7 +172,7 @@ class Node: def asList(self): return tuple(asList(self.getChildren())) def getChildNodes(self): - return [n for n in self.getChildnre() if isinstance(n, Node)] + return [n for n in self.getChildren() if isinstance(n, Node)] class EmptyNode(Node): def __init__(self): |