apt: fixed pkg=<name>=<version> fails if package is not yet installed.
Reported and patch provided by https://github.com/msolo. Closes GH-5625.
This commit is contained in:
parent
cf359df1c5
commit
3b1c9d6dd6
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ def package_status(m, pkgname, version, cache, state):
|
||||||
# assume older version of python-apt is installed
|
# assume older version of python-apt is installed
|
||||||
package_is_installed = pkg.isInstalled
|
package_is_installed = pkg.isInstalled
|
||||||
|
|
||||||
if version:
|
if version and package_is_installed:
|
||||||
try:
|
try:
|
||||||
installed_version = pkg.installed.version
|
installed_version = pkg.installed.version
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
|
|
Loading…
Reference in a new issue