From: fuzzyray Date: Thu, 19 Apr 2007 02:31:01 +0000 (-0000) Subject: Fix string join methods Bug #175050 X-Git-Tag: gentoolkit-0.2.4.3~125 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=65fde5d003ed86669512cc70457f9a5ee040ae33;p=gentoolkit.git Fix string join methods Bug #175050 svn path=/; revision=388 --- diff --git a/trunk/src/equery/equery b/trunk/src/equery/equery index 50f2cae..379e536 100755 --- a/trunk/src/equery/equery +++ b/trunk/src/equery/equery @@ -1182,7 +1182,7 @@ class CmdListDepends(Command): if not Config["piping"] and Config["verbosityLevel"] >= 3: print " " * (spacing * 2) + pp.cpv(pkg.get_cpv()), print "(" + \ - pp.useflag(dependency[1].join(" & ") + "? ") + \ + pp.useflag("&".join(dependency[1]) + "? ") + \ pp.pkgquery(dependency[0]+dependency[2]) + ")" else: print " " * (spacing * 2) + pkg.get_cpv() @@ -1196,7 +1196,7 @@ class CmdListDepends(Command): elif not Config["piping"] and Config["verbosityLevel"] >= 3: if dependency[1]: print " "*len(pkg.get_cpv()) + " " * (spacing * 2) + \ - " (" + pp.useflag(dependency[1].join("&")+ "? ") + \ + " (" + pp.useflag("&".join(dependency[1]) + "? ") + \ pp.pkgquery(dependency[0]+dependency[2]) + ")" else: print " "*len(pkg.get_cpv()) + " " * (spacing * 2) + " (" + \