commit: 3c130a4ccf983601767bfeb97f9565789552abdc Author: Lucio Sauer <watermanpaint <AT> posteo <DOT> net> AuthorDate: Tue May 21 17:28:47 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Jan 3 00:02:15 2026 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=3c130a4c
equery meta: fix "Docs:" indentation Previously the docs value wasn't aligned at column/character 14 but rather at 13. Closes: https://bugs.gentoo.org/934433 Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net> Signed-off-by: Sam James <sam <AT> gentoo.org> pym/gentoolkit/equery/meta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/gentoolkit/equery/meta.py b/pym/gentoolkit/equery/meta.py index 2eeb9fb..3c6668d 100644 --- a/pym/gentoolkit/equery/meta.py +++ b/pym/gentoolkit/equery/meta.py @@ -238,7 +238,7 @@ def format_upstream(upstream): updocs = _format_upstream_docs(up.docs) for updoc in updocs: - result.append(format_line(updoc, "Docs: ", " " * 13)) + result.append(format_line(updoc, "Docs: ", " " * 13)) for upbug in up.bugtrackers: result.append(format_line(upbug, "Bugs-to: ", " " * 13))
