From 6893156b4cca9a2ab81eabd5633861d0c19808ce Mon Sep 17 00:00:00 2001 From: Dave Schuyler Date: Wed, 3 Aug 2005 22:49:19 +0000 Subject: [PATCH] changed debug output --- direct/src/showbase/ShowBase.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/direct/src/showbase/ShowBase.py b/direct/src/showbase/ShowBase.py index da9e411753..53488da53e 100644 --- a/direct/src/showbase/ShowBase.py +++ b/direct/src/showbase/ShowBase.py @@ -272,9 +272,12 @@ class ShowBase(DirectObject.DirectObject): """ if self.config.GetBool('want-env-debug-info', 0): print "\n\nEnvironment Debug Info {" - print "* model path:", getModelPath() - print "* texture path:", getTexturePath() - print "* sound path:", getSoundPath() + print "* model path:" + print getModelPath() + print "* texture path:" + print getTexturePath() + print "* sound path:" + print getSoundPath() print "}" def exitfunc(self):