From 78d14fcce3d4fc1030a1698c41086d10ace41c0b Mon Sep 17 00:00:00 2001 From: fireclawthefox Date: Thu, 26 Jan 2017 11:26:31 +0100 Subject: [PATCH] Fixed function name getChildren is expected in the MemoryExplorer and not getChildrenAsList getChildren is also more convenient to the rest of the p3d source --- direct/src/tkwidgets/MemoryExplorer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/tkwidgets/MemoryExplorer.py b/direct/src/tkwidgets/MemoryExplorer.py index 62e74a6202..04e81875a0 100755 --- a/direct/src/tkwidgets/MemoryExplorer.py +++ b/direct/src/tkwidgets/MemoryExplorer.py @@ -284,7 +284,7 @@ class MemoryExplorerItem: def getNumChildren(self): return len(self.children) - def getChildrenAsList(self): + def getChildren(self): return self.children def getName(self):