Merge "Improve Python 3.x compatibility"

This commit is contained in:
Jenkins 2013-06-12 13:48:51 +00:00 committed by Gerrit Code Review
commit 1103cb5839

View File

@ -32,7 +32,7 @@ def logged(func):
def with_logging(*args, **kwargs):
try:
return func(*args, **kwargs)
except Exception, e:
except Exception as e:
LOG.exception(e)
raise