From 57e82559f82e05d2cedf45e103d3dfce78592a64 Mon Sep 17 00:00:00 2001 From: Manuel Buil Date: Thu, 29 Jun 2017 17:58:38 +0200 Subject: Use the recommended exception syntax Today I learnt that the use of except Exception, variable is not recommended anymore and it is not supported after python3. When using >=2.6, the syntax should be except Exception as variable. https://www.python.org/dev/peps/pep-3110/ Change-Id: I213c220fc6e92878ffa4737efa16adb76ace1271 Signed-off-by: Manuel Buil --- sfc/lib/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sfc/lib/utils.py') diff --git a/sfc/lib/utils.py b/sfc/lib/utils.py index 36124d92..2a188960 100644 --- a/sfc/lib/utils.py +++ b/sfc/lib/utils.py @@ -526,7 +526,7 @@ def wait_for_classification_rules(ovs_logger, compute_nodes, odl_ip, odl_port, if timeout <= 0: logger.error("Timeout but classification rules are not updated") - except Exception, e: + except Exception as e: logger.error('Error when waiting for classification rules: %s' % e) -- cgit 1.2.3-korg