From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3DA91158094 for ; Thu, 28 Jul 2022 15:29:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1FBFEE0B9E; Thu, 28 Jul 2022 15:29:10 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AAE52E0B9E for ; Thu, 28 Jul 2022 15:29:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BDD5134118C for ; Thu, 28 Jul 2022 15:29:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DD7154C for ; Thu, 28 Jul 2022 15:29:07 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1657589857.91721fcdb85ff67f7607dad60e82f11c1bf701fd.dolsen@gentoo> Subject: [gentoo-commits] proj/gentoolkit:master commit in: pym/gentoolkit/equery/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/equery/meta.py X-VCS-Directories: pym/gentoolkit/equery/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 91721fcdb85ff67f7607dad60e82f11c1bf701fd X-VCS-Branch: master Date: Thu, 28 Jul 2022 15:29:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b876d81b-fd2a-4d4b-92de-6bea3711c1f3 X-Archives-Hash: 844ee9b1cb6a6aab4ebc819658091f6c commit: 91721fcdb85ff67f7607dad60e82f11c1bf701fd Author: Brian Dolbec gentoo org> AuthorDate: Tue Jul 12 01:37:37 2022 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Tue Jul 12 01:37:37 2022 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=91721fcd equery meta: Put maintainer description on the same line Bug: https://bugs.gentoo.org/576224 Signed-off-by: Brian Dolbec 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 124f59b..22e9ad8 100644 --- a/pym/gentoolkit/equery/meta.py +++ b/pym/gentoolkit/equery/meta.py @@ -167,7 +167,7 @@ def format_maintainers(maints): if CONFIG["verbose"]: maintstr += " (%s)" % (maint.name,) if maint.name else "" maintstr += " - %s" % (maint.restrict,) if maint.restrict else "" - maintstr += "\n%s" % (maint.description,) if maint.description else "" + maintstr += " - %s" % (maint.description,) if maint.description else "" result.append(maintstr) return result