From f40a92ed1ba1b45a70954640da7862c205d509c5 Mon Sep 17 00:00:00 2001 From: Chris Brunner Date: Thu, 26 Jul 2007 22:52:12 +0000 Subject: [PATCH] changed a print to a notify --- direct/src/distributed/ConnectionRepository.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/direct/src/distributed/ConnectionRepository.py b/direct/src/distributed/ConnectionRepository.py index 3b33642ef0..fc058d97cd 100644 --- a/direct/src/distributed/ConnectionRepository.py +++ b/direct/src/distributed/ConnectionRepository.py @@ -134,7 +134,8 @@ class ConnectionRepository( # Look up the dclass dclass = self.dclassesByName.get(dcname+self.dcSuffix) if dclass is None: - print "\n\n\nNeed to define", dcname+self.dcSuffix + #print "\n\n\nNeed to define", dcname+self.dcSuffix + self.notify.warning("Need to define %s" % (dcname+self.dcSuffix)) dclass = self.dclassesByName.get(dcname+'AI') if dclass is None: dclass = self.dclassesByName.get(dcname)