1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-11-11 07:06:16 +01:00

Merge pull request #1228 from Vogtinator/fixlist

Fix osc.get_request_list ignoring the req_type parameter
This commit is contained in:
Dirk Mueller 2023-01-25 11:50:18 +01:00 committed by GitHub
commit c6dd9d6a54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4741,6 +4741,9 @@ def get_request_list(
"states": req_state,
}
if req_type is not None:
kwargs["types"] = [req_type]
assert not exclude_target_projects, "unsupported"
assert not withfullhistory, "unsupported"