From 65fde5d003ed86669512cc70457f9a5ee040ae33 Mon Sep 17 00:00:00 2001 From: fuzzyray Date: Thu, 19 Apr 2007 02:31:01 +0000 Subject: Fix string join methods Bug #175050 svn path=/; revision=388 --- trunk/src/equery/equery | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) + " (" + \ -- cgit v1.2.3