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 A101559CA5 for ; Sat, 19 Mar 2016 21:29:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7818E0895; Sat, 19 Mar 2016 21:29:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 33239E0894 for ; Sat, 19 Mar 2016 21:29:34 +0000 (UTC) Received: from sf.home (host81-147-14-156.range81-147.btcentralplus.com [81.147.14.156]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: slyfox) by smtp.gentoo.org (Postfix) with ESMTPSA id DFB63340AB2; Sat, 19 Mar 2016 21:29:32 +0000 (UTC) Received: by sf.home (Postfix, from userid 1000) id CC98D17BCEB13; Sat, 19 Mar 2016 21:29:29 +0000 (GMT) From: Sergei Trofimovich To: gentoo-portage-dev@lists.gentoo.org Cc: Sergei Trofimovich Subject: [gentoo-portage-dev] [PATCH 1/2] cleanup: fix spaces to tabs in depgraph.py Date: Sat, 19 Mar 2016 21:29:22 +0000 Message-Id: <1458422962-22180-1-git-send-email-slyfox@gentoo.org> X-Mailer: git-send-email 2.7.4 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-portage-dev@lists.gentoo.org Reply-to: gentoo-portage-dev@lists.gentoo.org X-Archives-Salt: fc2a3484-9af5-44ab-9a58-77c679a9fa3a X-Archives-Hash: 788c97f24062ab404a07703b40fcb70a From: Sergei Trofimovich Signed-off-by: Sergei Trofimovich --- pym/_emerge/depgraph.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index b58fbda..cfaafa3 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -5126,9 +5126,9 @@ class depgraph(object): break writemsg("\nemerge: there are no %s to satisfy " % - ("binary packages" if - self._frozen_config.myopts.get("--usepkgonly", "y") == True - else "ebuilds") + green(xinfo) + ".\n", noiselevel=-1) + ("binary packages" if + self._frozen_config.myopts.get("--usepkgonly", "y") == True + else "ebuilds") + green(xinfo) + ".\n", noiselevel=-1) if isinstance(myparent, AtomArg) and \ not cp_exists and \ self._frozen_config.myopts.get( @@ -6937,7 +6937,7 @@ class depgraph(object): for root in implicit_libc_roots: vardb = self._frozen_config.trees[root]["vartree"].dbapi for atom in self._expand_virt_from_graph(root, - portage.const.LIBC_PACKAGE_ATOM): + portage.const.LIBC_PACKAGE_ATOM): if atom.blocker: continue for pkg in self._dynamic_config._package_tracker.match(root, atom): -- 2.7.4