Author: dmeyer
Date: Fri Dec 22 14:24:44 2006
New Revision: 2277

Modified:
   trunk/popcorn/src/utils/ipc.py

Log:
do not cut normal strings off

Modified: trunk/popcorn/src/utils/ipc.py
==============================================================================
--- trunk/popcorn/src/utils/ipc.py      (original)
+++ trunk/popcorn/src/utils/ipc.py      Fri Dec 22 14:24:44 2006
@@ -124,9 +124,10 @@
         delim = line.find(' ')
         function = childlog.debug
         if delim > 0:
-            function = getattr(childlog, line[:delim].lower(), childlog.debug)
-            if function:
+            f = getattr(childlog, line[:delim].lower(), None)
+            if f:
                 line = line[delim+1:]
+                function = f
         function("[%s-%d] %s", self._name, self._child.child.pid, line)
 
 

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to