Replaced tabbed indentation with spaces for apt module
This commit is contained in:
parent
5a254e6303
commit
9eb4219f79
1 changed files with 2 additions and 2 deletions
|
@ -230,10 +230,10 @@ def package_status(m, pkgname, version, cache, state):
|
|||
try:
|
||||
provided_packages = cache.get_providing_packages(pkgname)
|
||||
if provided_packages:
|
||||
is_installed = False
|
||||
is_installed = False
|
||||
# when virtual package providing only one package, look up status of target package
|
||||
if cache.is_virtual_package(pkgname) and len(provided_packages) == 1:
|
||||
package = provided_packages[0]
|
||||
package = provided_packages[0]
|
||||
installed, upgradable, has_files = package_status(m, package.name, version, cache, state='install')
|
||||
if installed:
|
||||
is_installed = True
|
||||
|
|
Loading…
Reference in a new issue