Merge branch 'develop' into markjh/v2_sync_api

This commit is contained in:
Mark Haines 2015-10-13 10:33:00 +01:00
commit f96b480670
11 changed files with 245 additions and 37 deletions

View file

@ -47,7 +47,6 @@ class CodeMessageException(RuntimeError):
"""An exception with integer code and message string attributes."""
def __init__(self, code, msg):
logger.info("%s: %s, %s", type(self).__name__, code, msg)
super(CodeMessageException, self).__init__("%d: %s" % (code, msg))
self.code = code
self.msg = msg