merged. Bruce
On Fri, Sep 16, 2016 at 10:12 AM, Adrian Dudau <[email protected]> wrote: > The synthax used is deprecated and causes errors. > > Signed-off-by: Adrian Dudau <[email protected]> > --- > 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 > > -- > _______________________________________________ > meta-virtualization mailing list > [email protected] > https://lists.yoctoproject.org/listinfo/meta-virtualization > -- "Thou shalt not follow the NULL pointer, for chaos and madness await thee at its end"
-- _______________________________________________ meta-virtualization mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-virtualization
