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 5EF19139694 for ; Sun, 2 Jul 2017 15:34:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C7F63E0844; Sun, 2 Jul 2017 15:34:53 +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 A4FF0E0844 for ; Sun, 2 Jul 2017 15:34:53 +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 932A0341738 for ; Sun, 2 Jul 2017 15:34:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 380C47487 for ; Sun, 2 Jul 2017 15:34:51 +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: <1499009605.7a5489e8b2715d48767ec7ee936736e862a8d7c1.dolsen@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/dep/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/dep/dep_check.py X-VCS-Directories: pym/portage/dep/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 7a5489e8b2715d48767ec7ee936736e862a8d7c1 X-VCS-Branch: master Date: Sun, 2 Jul 2017 15:34:51 +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: 4e60a67f-34a9-4651-9bde-fd6b21a4c9ab X-Archives-Hash: 8f1969fde307a5080adf413f6003d286 commit: 7a5489e8b2715d48767ec7ee936736e862a8d7c1 Author: Sergei Trofimovich google com> AuthorDate: Sun Jul 2 15:28:03 2017 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sun Jul 2 15:33:25 2017 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=7a5489e8 portage/dep/depcheck.py: Whitespace, add indentation level after newline Signed-off-by: Sergei Trofimovich google.com> Final commit adds line trim @line 340 pym/portage/dep/dep_check.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pym/portage/dep/dep_check.py b/pym/portage/dep/dep_check.py index 737d2b138..35caecc74 100644 --- a/pym/portage/dep/dep_check.py +++ b/pym/portage/dep/dep_check.py @@ -337,7 +337,7 @@ def dep_zapdeps(unreduced, reduced, myroot, use_binaries=0, trees=None): return [mydbapi._pkg_str(cpv, atom.repo) for cpv in mydbapi.match(atom)] - # Sort the deps into installed, not installed but already + # Sort the deps into installed, not installed but already # in the graph and other, not installed and not in the graph # and other, with values of [[required_atom], availablility] for x, satisfied in zip(deps, satisfieds): @@ -713,8 +713,8 @@ def dep_check(depstring, mydbapi, mysettings, use="yes", mode=None, myuse=None, else: try: mysplit = use_reduce(depstring, uselist=myusesplit, - masklist=mymasks, matchall=(use=="all"), excludeall=useforce, - opconvert=True, token_class=Atom, eapi=eapi) + masklist=mymasks, matchall=(use=="all"), excludeall=useforce, + opconvert=True, token_class=Atom, eapi=eapi) except InvalidDependString as e: return [0, "%s" % (e,)]