]> git.ipfire.org Git - pbs.git/commitdiff
bugzilla: Fix listing fields
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 20 May 2023 10:10:12 +0000 (10:10 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 20 May 2023 10:10:12 +0000 (10:10 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/buildservice/bugtracker.py

index 4eb47d3951cf375efe1e7bf18e5e5eda35e3e96e..af4701c94fa08d8cb8ca96de8f7717b3f99a7005 100644 (file)
@@ -76,7 +76,7 @@ class Bugzilla(base.Object):
                products = {}
 
                # Fetch all products
-               response = await self._request("GET", "/rest/product", type="accessible")
+               response = await self._request("GET", "/rest/product", { "type" : "accessible" })
 
                # Walk through all products
                for product in response.get("products", []):