Fix a typo in server.py

TrivialFix

Change-Id: I550661e58e481e69b2f21600893a20692aa9e9f3
This commit is contained in:
melissaml 2016-10-08 12:26:29 +08:00
parent beb23103b0
commit ea001a874b

View File

@ -157,7 +157,7 @@ class RPCServer(msg_server.MessageHandlingServer):
failure = e.exc_info failure = e.exc_info
LOG.debug(u'Expected exception during message handling (%s)', e) LOG.debug(u'Expected exception during message handling (%s)', e)
except Exception: except Exception:
# current sys.exc_info() content can be overriden # current sys.exc_info() content can be overridden
# by another exception raised by a log handler during # by another exception raised by a log handler during
# LOG.exception(). So keep a copy and delete it later. # LOG.exception(). So keep a copy and delete it later.
failure = sys.exc_info() failure = sys.exc_info()