From: Zac Medico Date: Thu, 13 Oct 2011 21:58:17 +0000 (-0700) Subject: quickpkg: use AmbiguousPackageName X-Git-Tag: v2.2.0_alpha68~59 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=bf28492ed8ccc7fd3679a8e5433101a0945d417d;p=portage.git quickpkg: use AmbiguousPackageName --- diff --git a/bin/quickpkg b/bin/quickpkg index a326bd44a..69472248f 100755 --- a/bin/quickpkg +++ b/bin/quickpkg @@ -22,8 +22,8 @@ from portage import os from portage import xpak from portage.dbapi.dep_expand import dep_expand from portage.dep import Atom, extended_cp_match, use_reduce -from portage.exception import InvalidAtom, InvalidData, InvalidDependString, \ - PackageSetNotFound, PermissionDenied +from portage.exception import (AmbiguousPackageName, InvalidAtom, InvalidData, + InvalidDependString, PackageSetNotFound, PermissionDenied) from portage.util import ConfigProtect, ensure_dirs, shlex_split from portage.dbapi.vartree import dblink, tar_contents from portage.checksum import perform_md5 @@ -43,7 +43,7 @@ def quickpkg_atom(options, infos, arg, eout): try: atom = dep_expand(arg, mydb=vardb, settings=vartree.settings) - except ValueError as e: + except AmbiguousPackageName as e: # Multiple matches thrown from cpv_expand eout.eerror("Please use a more specific atom: %s" % \ " ".join(e.args[0]))