aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <siarheit@google.com>2017-07-02 08:28:03 -0700
committerBrian Dolbec <dolsen@gentoo.org>2017-07-02 08:33:25 -0700
commit7a5489e8b2715d48767ec7ee936736e862a8d7c1 (patch)
tree12a9ec944591323f51e43cb3e04bb4bf044fa107
parentrepoman/man/repoman.1: refer to the vcs instead of cvs (diff)
downloadportage-7a5489e8b2715d48767ec7ee936736e862a8d7c1.tar.gz
portage-7a5489e8b2715d48767ec7ee936736e862a8d7c1.tar.bz2
portage-7a5489e8b2715d48767ec7ee936736e862a8d7c1.zip
portage/dep/depcheck.py: Whitespace, add indentation level after newline
Signed-off-by: Sergei Trofimovich <siarheit@google.com> Final commit adds line trim @line 340
-rw-r--r--pym/portage/dep/dep_check.py6
1 files 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,)]