From 120ddeff7e1b8956fe35a7a39fae87ddcac8301c Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Mon, 22 Apr 2013 03:42:48 +0200 Subject: Improve Python 3.x compatibility Mechanical translation of deprecated constructs to 3.x compatible variants. Change-Id: I4988d0ac656903e0d0320aaa8361d4eeb774a0f9 --- openstack/common/log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openstack/common/log.py') diff --git a/openstack/common/log.py b/openstack/common/log.py index be30e9f..fe25c76 100644 --- a/openstack/common/log.py +++ b/openstack/common/log.py @@ -340,7 +340,7 @@ class LogConfigError(Exception): def _load_log_config(log_config): try: logging.config.fileConfig(log_config) - except ConfigParser.Error, exc: + except ConfigParser.Error as exc: raise LogConfigError(log_config, str(exc)) -- cgit