summaryrefslogtreecommitdiff
path: root/trunk/src
diff options
context:
space:
mode:
authorgenone <genone@gentoo.org>2004-10-12 19:09:21 +0000
committergenone <genone@gentoo.org>2004-10-12 19:09:21 +0000
commit21fda46e3352b0de925e3cdb958fbb7048c9fa20 (patch)
tree8e1b357acb9e4add0bbff0f541eed2d6162093cb /trunk/src
parent21022142e290e1069d86cad55dd5bf1e41ce14a4 (diff)
downloadgentoolkit-21fda46e3352b0de925e3cdb958fbb7048c9fa20.tar.gz
regression fix for bug 67210
svn path=/; revision=154
Diffstat (limited to 'trunk/src')
-rwxr-xr-xtrunk/src/equery/equery5
1 files changed, 2 insertions, 3 deletions
diff --git a/trunk/src/equery/equery b/trunk/src/equery/equery
index 1197e86..b02ac8c 100755
--- a/trunk/src/equery/equery
+++ b/trunk/src/equery/equery
@@ -344,7 +344,7 @@ class CmdListBelongs(Command):
if not cnt: return
for file in cnt.keys():
if rx.search(file):
- print pkg.get_cpv()
+ print pkg
return
class DummyExp:
@@ -357,8 +357,7 @@ class CmdListBelongs(Command):
if not cnt: return
for file in cnt.keys():
if rx.search(file):
- s = pp.cpv(pkg.get_cpv())
- s += " (" + pp.path(fileAsStr(file, cnt[file])) + ")"
+ s = pkg + " (" + pp.path(fileAsStr(file, cnt[file])) + ")"
print_info(0, s)
if opts["earlyOut"]:
raise DummyExp