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 65FFD138334 for ; Fri, 29 Jun 2018 04:29:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 73C73E090F; Fri, 29 Jun 2018 04:29:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 458AAE090F for ; Fri, 29 Jun 2018 04:29:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 692B1335C71 for ; Fri, 29 Jun 2018 04:29:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DECB2E1 for ; Fri, 29 Jun 2018 04:29:44 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1530246483.ede0c6a09e48cc1a542f50462e873cb2f945a584.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/depgraph.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: ede0c6a09e48cc1a542f50462e873cb2f945a584 X-VCS-Branch: master Date: Fri, 29 Jun 2018 04:29:44 +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: 7361d3cc-1853-4ad1-be02-a2435cbf6de6 X-Archives-Hash: d1915f592ee5ee730258fedceddd2d5e commit: ede0c6a09e48cc1a542f50462e873cb2f945a584 Author: Zac Medico gentoo org> AuthorDate: Fri Jun 29 04:25:14 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Jun 29 04:28:03 2018 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=ede0c6a0 depgraph._show_unsatisfied_blockers: AttributeError unevaluated_atom (bug 659564) Only attempt to access the unevaluated_atom attribute for package atoms, since soname atoms do not have this attribute. Bug: https://bugs.gentoo.org/659564 pym/_emerge/depgraph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index 429d8871c..42857c1a5 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -8422,7 +8422,7 @@ class depgraph(object): else: # Display the specific atom from SetArg or # Package types. - if atom != atom.unevaluated_atom: + if atom.package and atom != atom.unevaluated_atom: # Show the unevaluated atom, since it can reveal # issues with conditional use-flags missing # from IUSE.