Skip to content

Commit 049d817

Browse files
committed
bugs: fix wrong blocks_bug arg to deps bugs
When failing, fails with the following exception:: TypeError: Object of type function is not JSON serializable Fixes: f5b9550 Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
1 parent 0a1c70e commit 049d817

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pkgdev/scripts/pkgdev_bugs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def file_bug(
204204
return self.bugno
205205
for dep in self.edges:
206206
if dep.bugno is None:
207-
dep.file_bug(api_key, auto_cc_arches, observer)
207+
dep.file_bug(api_key, auto_cc_arches, (), observer)
208208
maintainers = dict.fromkeys(
209209
maintainer.email for pkg, _ in self.pkgs for maintainer in pkg.maintainers
210210
)

0 commit comments

Comments
 (0)