Fix get_pkg_current_version() depending on global
This commit is contained in:
parent
b0185e1826
commit
2b2a3c0dc3
1 changed files with 4 additions and 2 deletions
|
@ -573,7 +573,7 @@ def check_pkg_version(
|
|||
(installed pkg is up to date)."""
|
||||
|
||||
status, current_epoch, current_version = get_pkg_current_version(
|
||||
pkg, pkg_state, repo
|
||||
pkg, pkg_state, repo, other_state
|
||||
)
|
||||
if status != "fetched":
|
||||
return status
|
||||
|
@ -874,7 +874,9 @@ def get_srcinfo_check_result(
|
|||
return "fail"
|
||||
|
||||
|
||||
def get_pkg_current_version(pkg: str, pkg_state: dict[str, Any], repo: str):
|
||||
def get_pkg_current_version(
|
||||
pkg: str, pkg_state: dict[str, Any], repo: str, other_state: dict[str, Any]
|
||||
):
|
||||
"""Fetches the version info and returns status of fetching and the version.
|
||||
|
||||
Returns (status, epoch, version)
|
||||
|
|
Loading…
Reference in a new issue