Some beginning python3 porting for modules which have unittests

This commit is contained in:
Toshio Kuratomi 2016-04-27 07:17:05 -07:00 committed by Matt Clay
commit 5f0dc2b90f
2 changed files with 10 additions and 3 deletions

View file

@ -487,7 +487,8 @@ def install_deb(m, debs, cache, force, install_recommends, allow_unauthenticated
# to install so they're all done in one shot
deps_to_install.extend(pkg.missing_deps)
except Exception, e:
except Exception:
e = get_exception()
m.fail_json(msg="Unable to install package: %s" % str(e))
# and add this deb to the list of packages to install
@ -643,7 +644,8 @@ def download(module, deb):
f.write(data)
f.close()
deb = package
except Exception, e:
except Exception:
e = get_exception()
module.fail_json(msg="Failure downloading %s, %s" % (deb, e))
return deb