From 8e4ea9d01199008699edf8ae8899d70ffc599df7 Mon Sep 17 00:00:00 2001 From: Darren Ranalli Date: Wed, 9 Apr 2008 01:18:54 +0000 Subject: [PATCH] fixed messenger leak stack trace print --- direct/src/gui/DirectGuiBase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/gui/DirectGuiBase.py b/direct/src/gui/DirectGuiBase.py index fa2a4af8b1..081517b5fe 100644 --- a/direct/src/gui/DirectGuiBase.py +++ b/direct/src/gui/DirectGuiBase.py @@ -656,7 +656,7 @@ def setGuiGridSpacing(spacing): # production AI doesn't create any GUI. if config.GetBool('record-gui-creation-stack', __debug__): # this will help track down the code that created DirectGui objects - # call obj.getCreationStackTrace() to figure out what code created it + # call obj.printCreationStackTrace() to figure out what code created it DirectGuiBase = recordCreationStackStr(DirectGuiBase) class DirectGuiWidget(DirectGuiBase, NodePath):