summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorMarius Mauch <genone@gentoo.org>2008-03-03 20:53:33 +0000
committerMarius Mauch <genone@gentoo.org>2008-03-03 20:53:33 +0000
commit9d4716cf4af66aa5db2481ee6b9f8a941a5175ba (patch)
treee832190a4a823b65e5617fc54a8bd591e82aa72e /bin
parent9849e2fa53d8884fccf7a4461e71141317b4dbe0 (diff)
downloadportage-9d4716cf4af66aa5db2481ee6b9f8a941a5175ba.tar.gz
portage-9d4716cf4af66aa5db2481ee6b9f8a941a5175ba.tar.bz2
portage-9d4716cf4af66aa5db2481ee6b9f8a941a5175ba.zip
fix message on ValueError to not sound like crap
svn path=/main/trunk/; revision=9427
Diffstat (limited to 'bin')
-rwxr-xr-xbin/portageq2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/portageq b/bin/portageq
index a29669a24..c3fe8b37d 100755
--- a/bin/portageq
+++ b/bin/portageq
@@ -501,7 +501,7 @@ def main():
# Multiple matches thrown from cpv_expand
pkgs = e.args[0]
# An error has occurred so we writemsg to stderr and exit nonzero.
- portage.writemsg("The following packages available:\n", noiselevel=-1)
+ portage.writemsg("You specified an unqualified atom that matched multiple packages:\n", noiselevel=-1)
for pkg in pkgs:
portage.writemsg("* %s\n" % pkg, noiselevel=-1)
portage.writemsg("\nPlease use a more specific atom.\n", noiselevel=-1)