summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfuzzyray <fuzzyray@gentoo.org>2009-06-03 23:04:31 +0000
committerfuzzyray <fuzzyray@gentoo.org>2009-06-03 23:04:31 +0000
commit955b96d2437f139d6a65ecea44c94a1f9a9bb2b5 (patch)
tree35e15942314b2709e00e2b4aeebeb8de78025d24 /pym/gentoolkit/equery/which.py
parentUse elementtree instead of minidom for parsing (diff)
downloadgentoolkit-955b96d2437f139d6a65ecea44c94a1f9a9bb2b5.tar.gz
gentoolkit-955b96d2437f139d6a65ecea44c94a1f9a9bb2b5.tar.bz2
gentoolkit-955b96d2437f139d6a65ecea44c94a1f9a9bb2b5.zip
Apply updates from genscripts repo
svn path=/trunk/gentoolkit/; revision=659
Diffstat (limited to 'pym/gentoolkit/equery/which.py')
-rw-r--r--pym/gentoolkit/equery/which.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/gentoolkit/equery/which.py b/pym/gentoolkit/equery/which.py
index 4cae712..828dae1 100644
--- a/pym/gentoolkit/equery/which.py
+++ b/pym/gentoolkit/equery/which.py
@@ -91,7 +91,7 @@ def main(input_args):
pkg = sorted(matches).pop()
ebuild_path = pkg.get_ebuild_path()
if ebuild_path:
- pp.print_info(0, os.path.normpath(ebuild_path))
+ print os.path.normpath(ebuild_path)
else:
pp.print_warn("No ebuilds to satisfy %s" % pkg.name)
else: