portage.dep.dep_opconvert: remove handling of '&&' operator
authorSebastian Luther <SebastianLuther@gmx.de>
Tue, 10 Aug 2010 21:39:44 +0000 (23:39 +0200)
committerZac Medico <zmedico@gentoo.org>
Wed, 11 Aug 2010 05:31:02 +0000 (22:31 -0700)
pym/portage/dep/__init__.py

index 8d9d185ad54309757ec2b62cc04b81e5c4b31384..59650745fea50bc179da5b33981e92f1d7b2c131 100644 (file)
@@ -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: