KERNEL: fix for compatibility with python2.3

bzr revid: ced-5018cb134ef8e707946aa014f6115488f8c233b3
This commit is contained in:
ced 2007-03-08 20:11:50 +00:00
parent ed25abf408
commit c699c3c54f
1 changed files with 2 additions and 2 deletions

View File

@ -211,7 +211,7 @@ class GenericXMLRPCRequestHandler:
return r
except Exception,e:
logger = Logger()
logger.notifyChannel("web-services", LOG_ERROR, 'Exception in call: %s' % traceback.format_exc())
logger.notifyChannel("web-services", LOG_ERROR, 'Exception in call: %s' % traceback.format_exception(sys.exc_type, sys.exc_value, sys.exc_traceback))
s=str(e)
import tools
if tools.config['debug_mode']:
@ -311,7 +311,7 @@ class TinySocketClientThread(threading.Thread):
ts.mysend(result)
except Exception, e:
logger = Logger()
logger.notifyChannel("web-services", LOG_ERROR, 'Exception in call: %s' % traceback.format_exc())
logger.notifyChannel("web-services", LOG_ERROR, 'Exception in call: %s' % traceback.format_exception(sys.exc_type, sys.exc_value, sys.exc_traceback))
s=str(e)
import tools
if tools.config['debug_mode']: