prevent using undefined variable

This commit is contained in:
bugchecker 2015-04-05 20:40:11 +05:00 committed by Matt Clay
parent 31abdc7ace
commit b7b6367ad5

View file

@ -366,7 +366,7 @@ def install_deb(m, debs, cache, force, install_recommends, dpkg_options):
try:
pkg = apt.debfile.DebPackage(deb_file)
except SystemError, e:
m.fail_json(msg="Error: %s\nSystem Error: %s" % (pkg._failure_string,str(e)))
m.fail_json(msg="System Error: %s" % str(e))
# Check if it's already installed
if pkg.compare_to_version_in_cache() == pkg.VERSION_SAME: