[meta-virtualization] [meta-cloud-services][PATCH] openstackchef_inc.bbclass: Update python synthax for except

Adrian Dudau adrian.dudau at enea.com
Fri Sep 16 07:12:29 PDT 2016


The synthax used is deprecated and causes errors.

Signed-off-by: Adrian Dudau <adrian.dudau at enea.com>
---
 meta-openstack/classes/openstackchef_inc.bbclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-openstack/classes/openstackchef_inc.bbclass b/meta-openstack/classes/openstackchef_inc.bbclass
index b8757be..048fce6 100644
--- a/meta-openstack/classes/openstackchef_inc.bbclass
+++ b/meta-openstack/classes/openstackchef_inc.bbclass
@@ -248,7 +248,7 @@ def deploychef_make_startup_shutdown_list(d):
                     raise bb.build.FuncFailed(msg)
             hStartup.close()
             hShutdown.close()
-        except IOError, e:
+        except IOError as e:
             bb.error("Error opening startup/shutdown files %s %s,  %s %s" % \
             (startup_file, shutdown_file, d.getVar('FILE'), e))
     else:
@@ -381,7 +381,7 @@ def deploychef_make_templates( d, conf_tuple=tuple()):
                         deploychef_make_substitutions(d, sub_dict, attr_file, file_name)
                     else:
                         bb.build.FuncFailed(msg)
-        except IOError, e:
+        except IOError as e:
             bb.error("Could not write to attribute file %s: in %s,  %s" % \
             (attr_file, d.getVar('FILE'), e))
 
-- 
1.9.1



More information about the meta-virtualization mailing list