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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C32F91382C5 for ; Wed, 10 Feb 2021 02:47:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2211DE092E; Wed, 10 Feb 2021 02:47:34 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0C9F8E092E for ; Wed, 10 Feb 2021 02:47:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0964C340F21 for ; Wed, 10 Feb 2021 02:47:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 824F34AF for ; Wed, 10 Feb 2021 02:47:31 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1612925240.0c0c7c098f18234c4ebdec93c1799b16e8b26cd0.sam@gentoo> Subject: [gentoo-commits] proj/tatt:master commit in: scripts/ X-VCS-Repository: proj/tatt X-VCS-Files: scripts/tatt X-VCS-Directories: scripts/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0c0c7c098f18234c4ebdec93c1799b16e8b26cd0 X-VCS-Branch: master Date: Wed, 10 Feb 2021 02:47:31 +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: 18a5ea13-efc0-452a-9e80-3499b6c9cbc7 X-Archives-Hash: 8e408027dc048364c200cef79aae2b87 commit: 0c0c7c098f18234c4ebdec93c1799b16e8b26cd0 Author: Sam James gentoo org> AuthorDate: Wed Feb 10 02:47:20 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Feb 10 02:47:20 2021 +0000 URL: https://gitweb.gentoo.org/proj/tatt.git/commit/?id=0c0c7c09 scripts/tatt: drop invalid ~ prefix to arch Signed-off-by: Sam James gentoo.org> scripts/tatt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tatt b/scripts/tatt index 463e737..7524c8b 100755 --- a/scripts/tatt +++ b/scripts/tatt @@ -168,7 +168,7 @@ if options.bugnum: if response["cf_stabilisation_atoms"]: myJob.packageList = packageFinder.findPackages(response["cf_stabilisation_atoms"], config['arch'], get_repo_dir(config['repodir']), options.bugnum) if len(myJob.packageList) == 0 and ("KEYWORDREQ" in response["keywords"] or response["component"] == "Keywording"): - myJob.packageList = packageFinder.findPackages(response["cf_stabilisation_atoms"], '~' + config['arch'], get_repo_dir(config['repodir']), options.bugnum) + myJob.packageList = packageFinder.findPackages(response["cf_stabilisation_atoms"], config['arch'], get_repo_dir(config['repodir']), options.bugnum) else: response = session.get(config["bugzilla-url"] + "/rest/bug/{}/attachment".format(options.bugnum), params=params).json()["bugs"][str(options.bugnum)] for attachment in response: