projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c8c410b
)
portage.dep.dep_opconvert: remove handling of '&&' operator
author
Sebastian Luther
<SebastianLuther@gmx.de>
Tue, 10 Aug 2010 21:39:44 +0000
(23:39 +0200)
committer
Zac Medico
<zmedico@gentoo.org>
Wed, 11 Aug 2010 05:31:02 +0000
(22:31 -0700)
pym/portage/dep/__init__.py
patch
|
blob
|
history
diff --git
a/pym/portage/dep/__init__.py
b/pym/portage/dep/__init__.py
index 8d9d185ad54309757ec2b62cc04b81e5c4b31384..59650745fea50bc179da5b33981e92f1d7b2c131 100644
(file)
--- a/
pym/portage/dep/__init__.py
+++ b/
pym/portage/dep/__init__.py
@@
-360,7
+360,7
@@
def dep_opconvert(deplist):
while x != len(deplist):
if isinstance(deplist[x], list):
retlist.append(dep_opconvert(deplist[x]))
- elif deplist[x] == "||"
or deplist[x] == "&&"
:
+ elif deplist[x] == "||":
retlist.append([deplist[x]] + dep_opconvert(deplist[x+1]))
x += 1
else: