ajack       2003/10/18 07:54:08

  Modified:    python/gump launcher.py
  Log:
  log.warn not log.warning
  
  Revision  Changes    Path
  1.18      +2 -2      jakarta-gump/python/gump/launcher.py
  
  Index: launcher.py
  ===================================================================
  RCS file: /home/cvs/jakarta-gump/python/gump/launcher.py,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- launcher.py       17 Oct 2003 23:13:26 -0000      1.17
  +++ launcher.py       18 Oct 2003 14:54:08 -0000      1.18
  @@ -274,10 +274,10 @@
   
   def killChildren():
       pid=os.getpid()
  -    log.warning('Kill all children (anything launched by Gumpy) [PID' + str(pid) + 
']')    
  +    log.warn('Kill all children (anything launched by Gumpy) [PID' + str(pid) + 
']')    
       command='pkill -KILL -P ' + str(pid)
       exitcode=os.system(command)
  -    log.warning('Command: [' + command + '] exited with [' + str(exitcode) + ']')
  +    log.warn('Command: [' + command + '] exited with [' + str(exitcode) + ']')
       
   #
   # Kill the children 
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to