We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c3f492 commit 98bbf58Copy full SHA for 98bbf58
1 file changed
src/pkgdev/scripts/pkgdev_bugs.py
@@ -215,7 +215,7 @@ def file_bug(
215
maintainers = tuple(maintainers) or ("maintainer-needed@gentoo.org",)
216
217
summary = f"{', '.join(pkg.versioned_atom.cpvstr for pkg, _ in self.pkgs)}: stablereq"
218
- if len(summary) > 60:
+ if len(summary) > 90 and len(self.pkgs) > 1:
219
summary = f"{self.pkgs[0][0].versioned_atom.cpvstr} and friends: stablereq"
220
221
request_data = dict(
@@ -473,7 +473,7 @@ def observe(node: GraphNode):
473
f"https://bugs.gentoo.org/{node.bugno} ",
474
" | ".join(node.lines()),
475
" depends on bugs ",
476
- {dep.bugno for dep in node.edges},
+ {dep.bugno for dep in node.edges} or "{}",
477
)
478
self.out.flush()
479
0 commit comments