diff options
| author | fuzzyray <fuzzyray@gentoo.org> | 2007-03-09 04:08:33 +0000 |
|---|---|---|
| committer | fuzzyray <fuzzyray@gentoo.org> | 2007-03-09 04:08:33 +0000 |
| commit | 1933a7bbd782c0c6e65346f351e28cc78a18ab03 (patch) | |
| tree | b86d6b08ef3eb1cc94f7f26d982bbeac0b5fc0e6 /trunk/src/equery | |
| parent | f6ec88204b28e3c07eba062902884d331c45741f (diff) | |
| download | gentoolkit-1933a7bbd782c0c6e65346f351e28cc78a18ab03.tar.gz | |
Improved handling of KeyError in equery depends command (Bug #169929).
svn path=/; revision=353
Diffstat (limited to 'trunk/src/equery')
| -rwxr-xr-x | trunk/src/equery/equery | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/src/equery/equery b/trunk/src/equery/equery index ff80da5..0473de2 100755 --- a/trunk/src/equery/equery +++ b/trunk/src/equery/equery @@ -1134,7 +1134,7 @@ class CmdListDepends(Command): self.deppkgs[depstr] = depcpvs except KeyError, e: print_warn("") - print_warn("Package: " + depstr + " contains invalid dependency specification.") + print_warn("Package: " + pkgcpv + " contains invalid dependency specification.") print_warn("Portage error: " + str(e)) print_warn("") continue |
