Correct variable name

This commit is contained in:
Toshio Kuratomi 2014-11-18 13:08:26 -08:00 committed by Matt Clay
parent 78fb3217d6
commit 1af6a85492

View file

@ -220,7 +220,7 @@ def package_status(m, pkgname, version, cache, state):
# Only claim the package is upgradable if a candidate matches the version # Only claim the package is upgradable if a candidate matches the version
package_is_upgradable = False package_is_upgradable = False
for candidate in avail_upgrades: for candidate in avail_upgrades:
if pkg.versions[candidate] > p.installed: if pkg.versions[candidate] > pkg.installed:
package_is_upgradable = True package_is_upgradable = True
break break
else: else: