fixed typo, thanks Michele

This commit is contained in:
mdipierro
2013-07-03 17:16:56 -05:00
parent 5abfa27f3f
commit 0c013f6b59
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.6.0-development+timestamp.2013.07.03.15.23.30
Version 2.6.0-development+timestamp.2013.07.03.17.15.42
+1 -1
View File
@@ -4564,7 +4564,7 @@ class Service(object):
except:
etype, eval, etb = sys.exc_info()
data = '%s: %s\n' % (etype.__name__, eval) + str(request.is_local and traceback.format_tb(etb))
logger.warning('%s: %s\n%s') % (etype.__name__, eval, traceback.format_tb(etb))
logger.warning('%s: %s\n%s' % (etype.__name__, eval, traceback.format_tb(etb)))
return return_error(id, -32099, data=data)