diff options
| author | fuzzyray <fuzzyray@gentoo.org> | 2007-03-31 22:39:20 +0000 |
|---|---|---|
| committer | fuzzyray <fuzzyray@gentoo.org> | 2007-03-31 22:39:20 +0000 |
| commit | 3cb281b082bbd686ab66830ea87151e09a1c3622 (patch) | |
| tree | ad3191f3a7b29540a6cf9431be4bb40164c07879 /trunk/src/equery | |
| parent | 67f2caa5d98c9a0cf6bdbb6739f016c01ce2387f (diff) | |
| download | gentoolkit-3cb281b082bbd686ab66830ea87151e09a1c3622.tar.gz | |
Fix traceback in equery which (Bug #134053)
svn path=/; revision=369
Diffstat (limited to 'trunk/src/equery')
| -rwxr-xr-x | trunk/src/equery/equery | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/trunk/src/equery/equery b/trunk/src/equery/equery index bd3e715..8fec9fe 100755 --- a/trunk/src/equery/equery +++ b/trunk/src/equery/equery @@ -1027,7 +1027,12 @@ class CmdWhich(Command): matches = gentoolkit.sort_package_list(matches) if matches: - print_info(0, os.path.normpath(matches[-1].get_ebuild_path())) + pkg = matches[-1] + ebuild_path = pkg.get_ebuild_path() + if ebuild_path: + print_info(0, os.path.normpath(ebuild_path)) + else: + print_warn("There are no ebuilds to satisfy %s" % pkg.get_name()) else: print_error("No masked or unmasked packages found for " + pp.pkgquery(query)) |
