From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2AA60138A1A for ; Wed, 21 Jan 2015 16:35:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1EA1E0968; Wed, 21 Jan 2015 16:34:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5318FE0968 for ; Wed, 21 Jan 2015 16:34:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6A504340691 for ; Wed, 21 Jan 2015 16:34:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97CB210114 for ; Wed, 21 Jan 2015 16:34:55 +0000 (UTC) From: "Markus Meier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Markus Meier" Message-ID: <1421858089.374c0af14586f5d693463f1b9cc61636777cc322.maekke@gentoo> Subject: [gentoo-commits] dev/maekke:master commit in: scripts/ X-VCS-Repository: dev/maekke X-VCS-Files: scripts/keyword.sh X-VCS-Directories: scripts/ X-VCS-Committer: maekke X-VCS-Committer-Name: Markus Meier X-VCS-Revision: 374c0af14586f5d693463f1b9cc61636777cc322 X-VCS-Branch: master Date: Wed, 21 Jan 2015 16:34:55 +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-Archives-Salt: 8d6ad1b6-407a-4902-bda5-ad3f89d8523a X-Archives-Hash: b26e96e8ec9a194c1f39df4b5431596b commit: 374c0af14586f5d693463f1b9cc61636777cc322 Author: Markus Meier gentoo org> AuthorDate: Wed Jan 21 16:34:49 2015 +0000 Commit: Markus Meier gentoo org> CommitDate: Wed Jan 21 16:34:49 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=dev/maekke.git;a=commit;h=374c0af1 update assigned-to field name of pybugz/bugzilla output --- scripts/keyword.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/keyword.sh b/scripts/keyword.sh index 3d96ed8..912bba7 100755 --- a/scripts/keyword.sh +++ b/scripts/keyword.sh @@ -107,7 +107,7 @@ fi tmpfile="$(mktemp)" ${BUGZ} ${BUGZ_DEFAULT_OPTS} get ${bugid} > ${tmpfile} aliases="$(grep ^CC ${tmpfile} | awk '{ print $3 }')" -assignee="$(grep ^Assignee ${tmpfile} | awk '{ print $3 }')" +assignee="$(grep ^AssignedTo ${tmpfile} | awk '{ print $3 }')" rm ${tmpfile} [[ -z ${assignee} ]] && die "problem with bugz: assignee empty"