diff options
| author | fuzzyray <fuzzyray@gentoo.org> | 2007-04-19 02:31:01 +0000 |
|---|---|---|
| committer | fuzzyray <fuzzyray@gentoo.org> | 2007-04-19 02:31:01 +0000 |
| commit | 65fde5d003ed86669512cc70457f9a5ee040ae33 (patch) | |
| tree | eefda57b63d26989f959284b7ce5c1a4f23318de /trunk/src | |
| parent | 9874b61867c2d631d21bf42f1181e21fa0f8bbf3 (diff) | |
| download | gentoolkit-65fde5d003ed86669512cc70457f9a5ee040ae33.tar.gz | |
Fix string join methods Bug #175050
svn path=/; revision=388
Diffstat (limited to 'trunk/src')
| -rwxr-xr-x | trunk/src/equery/equery | 4 |
1 files 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) + " (" + \ |
