From: Zac Medico Date: Thu, 11 Oct 2007 05:19:14 +0000 (-0000) Subject: Raise a PackageNotFound exception instead of a ValueError X-Git-Tag: v2.2_pre1~654 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c20fbdca610df340787ec58b2865a48bc6e17da4;p=portage.git Raise a PackageNotFound exception instead of a ValueError in order to avoid ambiguity if an unexpected ValueError occurs. svn path=/main/trunk/; revision=8043 --- diff --git a/pym/emerge/__init__.py b/pym/emerge/__init__.py index 2cbe18987..e681fd231 100644 --- a/pym/emerge/__init__.py +++ b/pym/emerge/__init__.py @@ -2083,7 +2083,7 @@ class depgraph(object): if not matched_packages: if raise_on_missing: - raise ValueError + raise portage.exception.PackageNotFound(x) if not arg: xinfo='"'+x+'"' else: @@ -2820,7 +2820,7 @@ class depgraph(object): self.target_root, mydep, raise_on_missing=True, arg=mydep): print >> sys.stderr, "\n\n!!! Problem resolving dependencies for", mydep return 0 - except ValueError: + except portage.exception.PackageNotFound: missing_atoms.append(mydep) if not self.validate_blockers():