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
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ class RPCServer(msg_server.MessageHandlingServer):
failure = e.exc_info
LOG.debug(u'Expected exception during message handling (%s)', e)
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
# LOG.exception(). So keep a copy and delete it later.
failure = sys.exc_info()